May 2019
Intermediate to advanced
456 pages
11h 38m
English
In this section, we will be building a simple ConvNet that can be used for classifying the MNIST characters, while at the same time, learning about the different pieces that make up modern ConvNets.
We can directly import the MNIST dataset from Keras by running the following code:
from keras.datasets import mnist (x_train, y_train), (x_test, y_test) = mnist.load_data()
Our dataset contains 60,000 28x28-pixel images. MNIST characters are black and white, so the data shape usually does not include channels:
x_train.shape
out: (60000, 28, 28)
We will take a closer look at color channels later, but for now, let's expand our data dimensions to show that we only have a one-color channel. We can achieve this by running ...