Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/redjasm/hand-written-digits-classifier

A neural network made using python and numpy to classify images of hand written digits between 0 and 9. Trained with the MNIST dataset.
https://github.com/redjasm/hand-written-digits-classifier

Last synced: 7 days ago
JSON representation

A neural network made using python and numpy to classify images of hand written digits between 0 and 9. Trained with the MNIST dataset.

Awesome Lists containing this project

README

        

# Simple MNIST NN from scratch using numpy

![](MnistExamples.png)

Thanks to [Samson Zhang](https://www.kaggle.com/code/wwsalmon/simple-mnist-nn-from-scratch-numpy-no-tf-keras/notebook) for the amazing tutorial.

![](screenshot.png)
As you see in the screenshot above, the model is able to predict the handwritten digits with 83% accuracy. This is not bad for a model that is trained from scratch using only numpy. But we can do better.