Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 839 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 839 Bytes

MNIST Digits Recognition

Welcome, This is my implementation multilayer Neural Network created using only the python's numpy package. It's based on the Neural Network from the book Neural Networks and Deep Learning by Michael Nielsen. I recommend reading that if you want to learn more.

How to use

First make sure you numpy installed.

$ git clone https://github.com/vedantrathore/digits-recognition.git
$ cd digits-recognition/
$ wget "https://raw.githubusercontent.com/mnielsen/neural-networks-and-deep-learning/master/data/mnist.pkl.gz"
$ python network.py

Acknowledgements

This is was inspired from this repository and uses some of it's code.