| 3 | import tf "github.com/galeone/tensorflow/tensorflow/go" |
| 4 | |
| 5 | type LNormalization struct { |
| 6 | axis float64 |
| 7 | dtype DataType |
| 8 | inputs []Layer |
| 9 | mean interface{} |
| 10 | name string |
| 11 | shape tf.Shape |
| 12 | trainable bool |
| 13 | variance interface{} |
| 14 | layerWeights []*tf.Tensor |
| 15 | } |
| 16 | |
| 17 | func Normalization() *LNormalization { |
| 18 | return &LNormalization{ |
nothing calls this directly
no outgoing calls
no test coverage detected