Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/oscarsaharoy/mnist-classifier

neural network to learn MNIST dataset
https://github.com/oscarsaharoy/mnist-classifier

ai deeplearning

Last synced: 1 day ago
JSON representation

neural network to learn MNIST dataset

Awesome Lists containing this project

README

        

This is a simple neural network that classifies the images in the MNIST dataset. It uses one hidden layer of 40 nodes and two sets of weights. Training over 11 epochs of a subset of the data it is able to reach 94% accuracy.

# running locally

make sure numpy is installed:
```
pip install numpy
```
run the training process and watch the output:
```
./network.py
```