Numpy-Neuron / nn /train.go
Jensen-holm's picture
stuck on working with computeOutput function, getting dim error every
0987346
raw
history blame
88 Bytes
package nn
func (nn *NN) Train() {
nn.InitWnB()
nn.TrainTestSplit()
nn.Backprop()
}