|
|
|
|
|
by test6554
3026 days ago
|
|
It's been a while, but I remember backprop starting at the end of the neural net, and working backwards. Each weight that contributed to a wrong answer had its weight value weakened or even reversed by some small factor. And each weight that contributed to a correct answer had its weight value strengthened by some small factor. So it's probably as simple as newWeight = oldWeight +/- (stepValue * someFactor) |
|