| 3 | import tf "github.com/galeone/tensorflow/tensorflow/go" |
| 4 | |
| 5 | type LRandomTranslation struct { |
| 6 | dtype DataType |
| 7 | fillMode string |
| 8 | fillValue float64 |
| 9 | heightFactor float64 |
| 10 | inputs []Layer |
| 11 | interpolation string |
| 12 | name string |
| 13 | seed interface{} |
| 14 | shape tf.Shape |
| 15 | trainable bool |
| 16 | widthFactor float64 |
| 17 | layerWeights []*tf.Tensor |
| 18 | } |
| 19 | |
| 20 | func RandomTranslation(heightFactor float64, widthFactor float64) *LRandomTranslation { |
| 21 | return &LRandomTranslation{ |
nothing calls this directly
no outgoing calls
no test coverage detected