Handwritten character recognition using Keras and convolutional neuaral networks
A demonstration of the capability of deep learning techniques to recognize handwritten characters using convolution neural networks in python using Keras. In this we are gonna:
- Load the MNIST dataset in Keras
- Develop and run the neural network model
- Implement Simple convolutional Neural Netwrok
- Python
- Tensorflow
- Keras
pip3 install tensorflow
pip3 install keras
- Run load_data.py using python to download the MNIST dataset which is stored at ~/.keras/datasets/mnist.pkl.gz
- After running the code you will see something like below
- Run the train.py to train the MNIST dataset using Keras.
- Run the convolution.py to train the MNIST dataset using Convolutional Nueral Network