DL 3
DL 3
DL 3
2.11.0
This guide uses the Fashion MNIST (https://github.com/zalandoresearch/fashion-mnist) dataset which contains 70,000
grayscale images in 10 categories. The images show individual articles of clothing at low resolution (28 by 28 pixels), as
seen here:
Fashion MNIST is intended as a drop-in replacement for the classic MNIST (http://yann.lecun.com/exdb/mnist/) dataset—
often used as the "Hello, World" of machine learning programs for computer vision. The MNIST dataset contains images
of handwritten digits (0, 1, 2, etc.) in a format identical to that of the articles of clothing you'll use here.
This guide uses Fashion MNIST for variety, and because it's a slightly more challenging problem than regular MNIST.
Both datasets are relatively small and are used to verify that an algorithm works as expected. They're good starting points
to test and debug code.
Here, 60,000 images are used to train the network and 10,000 images to evaluate how accurately the network learned to
l if i Y h F hi MNIST di l f T Fl I d l d h F hi MNIST d
In [2]: fashion_mnist = tf.keras.datasets.fashion_mnist
(train_images, train_labels), (test_images, test_labels) = fashion_mnist.load_data()
The train_images and train_labels arrays are the training set—the data the model uses to learn.
The model is tested against the test set, the test_images , and test_labels arrays.
The images are 28x28 NumPy arrays, with pixel values ranging from 0 to 255. The labels are an array of integers,
ranging from 0 to 9. These correspond to the class of clothing the image represents:
Label Class
0 T-shirt/top
1 Trouser
2 Pullover
3 Dress
4 Coat
5 Sandal
6 Shirt
7 Sneaker
8 Bag
9 Ankle boot
Each image is mapped to a single label. Since the class names are not included with the dataset, store them here to use
later when plotting the images:
In [4]: train_images.shape
In [5]: len(train_labels)
Out[5]: 60000
In [6]: train_labels
In [7]: test_images.shape
In [8]: len(test_labels)
Out[8]: 10000
In [9]: plt.figure()
plt.imshow(train_images[0])
plt.colorbar()
plt.grid(False)
plt.show()
Scale these values to a range of 0 to 1 before feeding them to the neural network model. To do so, divide the values by
255. It's important that the training set and the testing set be preprocessed in the same way:
To verify that the data is in the correct format and that you're ready to build and train the network, let's display the first 25
images from the training set and display the class name below each image.
In [11]: plt.figure(figsize=(10,10))
for i in range(25):
plt.subplot(5,5,i+1)
plt.xticks([])
plt.yticks([])
plt.grid(False)
plt.imshow(train_images[i], cmap=plt.cm.binary)
plt.xlabel(class_names[train_labels[i]])
plt.show()
The first layer in this network, tf.keras.layers.Flatten , transforms the format of the images from a two-
dimensional array (of 28 by 28 pixels) to a one-dimensional array (of 28 * 28 = 784 pixels). Think of this layer as
unstacking rows of pixels in the image and lining them up. This layer has no parameters to learn; it only reformats the
data.
After the pixels are flattened, the network consists of a sequence of two tf.keras.layers.Dense layers. These are
densely connected, or fully connected, neural layers. The first Dense layer has 128 nodes (or neurons). The second
(and last) layer returns a logits array with length of 10. Each node contains a score that indicates the current image
belongs to one of the 10 classes.
In [13]: model.compile(optimizer='adam',
loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True),
metrics=['accuracy'])
1. Feed the training data to the model. In this example, the training data is in the train_images and
train_labels arrays.
2. The model learns to associate images and labels.
3. You ask the model to make predictions about a test set—in this example, the test_images array.
4. Verify that the predictions match the labels from the test_labels array.
As the model trains, the loss and accuracy metrics are displayed. This model reaches an accuracy of about 0.91 (or 91%)
on the training data.
Evaluate accuracy
Next, compare how the model performs on the test dataset:
It turns out that the accuracy on the test dataset is a little less than the accuracy on the training dataset. This gap
between training accuracy and test accuracy represents overfitting. Overfitting happens when a machine learning model
performs worse on new, previously unseen inputs than it does on the training data. An overfitted model "memorizes" the
noise and details in the training dataset to a point where it negatively impacts the performance of the model on the new
data. For more information, see the following:
Make predictions
With the model trained, you can use it to make predictions about some images. Attach a softmax layer to convert the
model's linear outputs—logits (https://developers.google.com/machine-learning/glossary#logits)—to probabilities, which
should be easier to interpret.
Here, the model has predicted the label for each image in the testing set. Let's take a look at the first prediction:
In [18]: predictions[0]
A prediction is an array of 10 numbers. They represent the model's "confidence" that the image corresponds to each of
the 10 different articles of clothing. You can see which label has the highest confidence value:
In [19]: np.argmax(predictions[0])
Out[19]: 9
So, the model is most confident that this image is an ankle boot, or class_names[9] . Examining the test label shows
that this classification is correct:
In [20]: test_labels[0]
Out[20]: 9
Verify predictions
With the model trained, you can use it to make predictions about some images.
Let's look at the 0th image, predictions, and prediction array. Correct prediction labels are blue and incorrect prediction
labels are red. The number gives the percentage (out of 100) for the predicted label.
In [22]: i = 0
plt.figure(figsize=(6,3))
plt.subplot(1,2,1)
plot_image(i, predictions[i], test_labels, test_images)
plt.subplot(1,2,2)
plot_value_array(i, predictions[i], test_labels)
plt.show()
In [23]: i = 12
plt.figure(figsize=(6,3))
plt.subplot(1,2,1)
plot_image(i, predictions[i], test_labels, test_images)
plt.subplot(1,2,2)
plot_value_array(i, predictions[i], test_labels)
plt.show()
Let's plot several images with their predictions. Note that the model can be wrong even when very confident.
In [24]: # Plot the first X test images, their predicted labels, and the true labels.
# Color correct predictions in blue and incorrect predictions in red.
num_rows = 5
num_cols = 3
num_images = num_rows*num_cols
plt.figure(figsize=(2*2*num_cols, 2*num_rows))
for i in range(num_images):
plt.subplot(num_rows, 2*num_cols, 2*i+1)
plot_image(i, predictions[i], test_labels, test_images)
plt.subplot(num_rows, 2*num_cols, 2*i+2)
plot_value_array(i, predictions[i], test_labels)
plt.tight_layout()
plt.show()
(28, 28)
tf.keras models are optimized to make predictions on a batch, or collection, of examples at once. Accordingly, even
though you're using a single image, you need to add it to a list:
In [26]: # Add the image to a batch where it's the only member.
img = (np.expand_dims(img,0))
print(img.shape)
tf.keras.Model.predict returns a list of lists—one list for each image in the batch of data. Grab the predictions for
our (only) image in the batch:
In [29]: np.argmax(predictions_single[0])
Out[29]: 2