Numpy-Neuron / alg /interface.go
Jensen-holm's picture
significantly decreased the complexity of the API by deciding to make
eec3b88
raw
history blame
52 Bytes
package alg
type Alg interface {
New()
Train()
}