Exercise: Create and Train a CNN for Classification
Challenge yourself to create and train a CNN to classify handwritten digits from the MNIST dataset.
We'll cover the following...
We'll cover the following...
Problem statement
In this lesson, we’ll create and train a CNN to classify 28x28 grayscale images of handwritten digits. We’ll use the MNIST dataset of 60000 images. Let’s display a few examples from the training dataset.
Attempting to classify these images with traditional computer vision programming would be difficult. This is one of those cases where we can visually identify these images as 1 of 10 digits without effort, but we would have a hard time explaining how we got to the correct answer. It is the perfect application for machine learning.
Launch the Jupyter Notebook below and follow the instructions.
Instructions:
The comment lines ...