KentoNishi / Simple-Neural-Network

Simple neural network implementation in C++.
1 stars 2 forks source link

No Backpropagation #1

Closed KentoNishi closed 5 years ago

KentoNishi commented 5 years ago

Follow this tutorial to do backpropagation for real learning. https://towardsdatascience.com/how-does-back-propagation-in-artificial-neural-networks-work-c7cad873ea7

KentoNishi commented 5 years ago

https://machinelearningmastery.com/implement-backpropagation-algorithm-scratch-python/ might help with the entire network.

KentoNishi commented 5 years ago

Finished the C++ Implementation!