Numpy-Neuron / nn /backprop.go
Jensen-holm's picture
mapping activation arg to the actual function
0a04cd7
raw
history blame
80 Bytes
package nn
func (nn *NN) Backprop() {
for i := 0; i < nn.Epochs; i++ {
}
}