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 digit classifier from scratch and with CNN-tf
https://github.com/lokranjanp/mnist-classifier

mnist mnist-classification mnist-classifier numpy pandas tensorflow

Last synced: 6 days ago
JSON representation

mnist digit classifier from scratch and with CNN-tf

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