1. using a simple nn to do xor bit operation
2. mnist hand written digit recognition
11–13 of 13 posts
2. mnist hand written digit recognition
Make sure to implement backprop yourself: don't use Tensorflow, just use numpy and write out the matrix multiplications yourself.
Not bad advice, but to get a feel before you dive into the deep end, use the libraries and then, by all means, follow this advice. You should always know what's underlying the functionality a library provides, but don't hesitate to start simple. I remember "C++ Neural Networks and Fuzzy Logic" at 16 and being intimidated because I had to develop and understand the code without having a background in statistics, calcu…