Numpy-Neuron / alg /alg.go
Jensen-holm's picture
re configured the Alg interface and the NN sttuct, now we have to work
a4aa491
raw
history blame
52 Bytes
package alg
type Alg interface {
New()
Train()
}