Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Mnist handwritten digit classifier from scratch using numpy only and also with CNN-tf. The aim is to make the models of almost equal accuracy.
https://github.com/lokranjanp/mnist-classifier

mnist mnist-classification mnist-classifier numpy pandas tensorflow

Last synced: about 8 hours ago
JSON representation

Mnist handwritten digit classifier from scratch using numpy only and also with CNN-tf. The aim is to make the models of almost equal accuracy.

Awesome Lists containing this project

README

        

Contains 2 approaches to solving the MNIST Hand Written Digit Classifier.

Main file : Tensorflow Keras API approach.
basic.py : Neural Network from scratch.

Architecture remains same.
Input : 28 * 28 pixel Grayscale Image.
Input layer of Neural Network : 784 Neurons (ReLu activation function)
Output : 10 neurons (Softmax Function)

Requirements :
1) Tensorflow, Keras
2) Numpy
3) Pandas