Project Brief
Today we will build a program that recognizes handwritten digits using Python and the TensorFlow machine learning framework.
Please download this NPZ dataset. The dataset contains both training images and testing images. These are small images of handwritten numbers from 0 to 9. Here is an example of an image containing the digit “7”.
Your steps to building the program would be:
Import the libraries
Load the dataset and preprocess the data
Build and compile the model
Train the model using the training data
Evaluate the model
Make predictions using the testing data
If you want to view the NPZ dataset images before starting with the project, you can use the following Python script. It will display the 34th image of the training data. You can change the “33” index in the code to another number to see another image.