This is an Image Recognition tutorial where we use Deep Learning and MNIST Digits dataset.
You can find the dataset on Kaggle .
Here you have to perform 3 basic steps:
- Load the required libraries
- Load the dataset
- Split the data into test and training samples
Simply view the images and ensure to use the samples in their best format
This step is most important and includes 3 task:
- Flatten the images and get them to a common dimension
- Normalize it
- convert the encoded output array to a number
Here we define a simple neural network with a dense hidden and output layer
Test the model on test data