package
Version:
v0.0.0-...-6a15580
Opens a new window with list of versions in this module.
Published: Dec 13, 2021
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Attr struct {
Name string `json:"name"`
Props string `json:"props"`
}
type Network struct {
InputSize int `json:"input_size"`
OutputSize int `json:"output_size"`
Props Props `json:"props"`
Synaptics []Synaptic `json:"synaptics"`
}
type Props struct {
Loss Attr `json:"loss"`
Optimizer Attr `json:"optimizer"`
ErrLimit float64 `json:"err_limit"`
MaxEpoch int `json:"max_epoch"`
}
type Synaptic struct {
SourceSize int `json:"source_size"`
TargetSize int `json:"target_size"`
Weight Weight `json:"weight"`
Activation Attr `json:"activation"`
}
type Weight struct {
W [][]float64 `json:"w"`
B []float64 `json:"b"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.