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