Numpy-Neuron / nn /train.go
Jensen-holm's picture
mapping activation arg to the actual function
0a04cd7
raw
history blame
230 Bytes
package nn
func (nn *NN) Train() {
nn.InitWnB()
nn.TrainTestSplit()
// iterate n times where n = nn.Epochs
// use backprop algorithm on each iteration
// to fit the model to the data
for i := 0; i < nn.Epochs; i++ {
}
}