Model contains the serializable parameters for a convolutional neural network model.
| 32 | |
| 33 | // Model contains the serializable parameters for a convolutional neural network model. |
| 34 | type Model struct { |
| 35 | nn.Module |
| 36 | Config Config |
| 37 | K []*nn.Param |
| 38 | B []*nn.Param |
| 39 | } |
| 40 | |
| 41 | func init() { |
| 42 | gob.Register(&Model{}) |
nothing calls this directly
no outgoing calls
no test coverage detected