| 3 | import tf "github.com/galeone/tensorflow/tensorflow/go" |
| 4 | |
| 5 | type LTextVectorization struct { |
| 6 | dtype DataType |
| 7 | inputs []Layer |
| 8 | maxTokens interface{} |
| 9 | name string |
| 10 | ngrams interface{} |
| 11 | outputMode string |
| 12 | outputSequenceLength interface{} |
| 13 | padToMaxTokens bool |
| 14 | shape tf.Shape |
| 15 | split string |
| 16 | standardize string |
| 17 | trainable bool |
| 18 | vocabulary interface{} |
| 19 | layerWeights []*tf.Tensor |
| 20 | } |
| 21 | |
| 22 | func TextVectorization() *LTextVectorization { |
| 23 | return <extVectorization{ |
nothing calls this directly
no outgoing calls
no test coverage detected