| 6 | import tf "github.com/galeone/tensorflow/tensorflow/go" |
| 7 | |
| 8 | type LSyncBatchNormalization struct { |
| 9 | axis float64 |
| 10 | betaConstraint constraint.Constraint |
| 11 | betaInitializer initializer.Initializer |
| 12 | betaRegularizer regularizer.Regularizer |
| 13 | center bool |
| 14 | dtype DataType |
| 15 | epsilon float64 |
| 16 | gammaConstraint constraint.Constraint |
| 17 | gammaInitializer initializer.Initializer |
| 18 | gammaRegularizer regularizer.Regularizer |
| 19 | inputs []Layer |
| 20 | momentum float64 |
| 21 | movingMeanInitializer initializer.Initializer |
| 22 | movingVarianceInitializer initializer.Initializer |
| 23 | name string |
| 24 | scale bool |
| 25 | shape tf.Shape |
| 26 | trainable bool |
| 27 | layerWeights []*tf.Tensor |
| 28 | } |
| 29 | |
| 30 | func SyncBatchNormalization() *LSyncBatchNormalization { |
| 31 | return &LSyncBatchNormalization{ |
nothing calls this directly
no outgoing calls
no test coverage detected