MCPcopy
hub / github.com/nlpodyssey/spago / Model

Struct Model

nn/convolution/convolution1d/model.go:34–39  ·  view source on GitHub ↗

Model contains the serializable parameters for a convolutional neural network model.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected