Basic classification
This guide trains a neural network model to classify images of clothing, like sneakers and shirts. It's okay if you don't understand all the details, this is a fast-paced overview of a complete TensorFlow program with the details explained as we go.
This guide usestf.keras, a high-level API to build and train models in TensorFlow.
# TensorFlow and tf.keras
import
tensorflow
as
tf
from
tensorflow
import
keras
# Helper libraries
import
numpy
as
np
import
matplotlib
.
pyplot
as
plt
print
(
tf
.
__version__
)
1.10.0
Import the Fashion MNIST dataset
This guide uses theFashion MNISTdataset 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:
Figure 1.Fashion-MNIST samples(by Zalando, MIT License). |
Fashion MNIST is intended as a drop-in replacement for the classicMNISTdataset—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 an identical format to the articles of clothing we'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.
We will use 60,000 images to train the network and 10,000 images to evaluate how accurately the network learned to classify images. You can access the Fashion MNIST directly from TensorFlow, just import and load the data:
fashion_mnist
=
keras
.
datasets
.
fashion_mnist
(
train_images
,
train_labels
),
(
test_images
,
test_labels
)
=
fashion_mnist
.
load_data
()
Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/train-labels-idx1-ubyte.gz
32768/29515 [=================================] - 0s 0us/step
Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/train-images-idx3-ubyte.gz
26427392/26421880 [==============================] - 1s 0us/step
Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/t10k-labels-idx1-ubyte.gz
8192/5148 [===============================================] - 0s 0us/step
Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/t10k-images-idx3-ubyte.gz
4423680/4422102 [==============================] - 0s 0us/step
Loading the dataset returns four NumPy arrays:
- The
train_images
andtrain_labels
arrays are the training set —the data the model uses to learn. - The model is tested against the
test set
, the
test_images
, andtest_labels
arrays.
The images are 28x28 NumPy arrays, with pixel values ranging between 0 and 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:
class_names
=
[
'T-shirt/top'
,
'Trouser'
,
'Pullover'
,
'Dress'
,
'Coat'
,
'Sandal'
,
'Shirt'
,
'Sneaker'
,
'Bag'
,
'Ankle boot'
]
Explore the data
Let's explore the format of the dataset before training the model. The following shows there are 60,000 images in the training set, with each image represented as 28 x 28 pixels:
train_images
.
shape
(60000, 28, 28)
Likewise, there are 60,000 labels in the training set:
len
(
train_labels
)
60000
Each label is an integer between 0 and 9:
train_labels
array([9, 0, 0, ..., 3, 0, 5], dtype=uint8)
There are 10,000 images in the test set. Again, each image is represented as 28 x 28 pixels:
test_images
.
shape
(10000, 28, 28)
And the test set contains 10,000 images labels:
len
(
test_labels
)
10000
Preprocess the data
The data must be preprocessed before training the network. If you inspect the first image in the training set, you will see that the pixel values fall in the range of 0 to 255:
plt
.
figure
()
plt
.
imshow
(
train_images
[
0
])
plt
.
colorbar
()
plt
.
gca
().
grid
(
False
)
We scale these values to a range of 0 to 1 before feeding to the neural network model. For this, cast the datatype of the image components from an integer to a float, and divide by 255. Here's the function to preprocess the images:
It's important that the_training set_and the_testing set_are preprocessed in the same way:
train_images
=
train_images
/
255.0
test_images
=
test_images
/
255.0
Display the first 25 images from the_training set_and display the class name below each image. Verify that the data is in the correct format and we're ready to build and train the network.
import
matplotlib
.
pyplot
as
plt
%
matplotlib
inline
plt
.
figure
(
figsize
=(
10
,
10
))
for
i
in
range
(
25
):
plt
.
subplot
(
5
,
5
,
i
+
1
)
plt
.
xticks
([])
plt
.
yticks
([])
plt
.
grid
(
'off'
)
plt
.
imshow
(
train_images
[
i
],
cmap
=
plt
.
cm
.
binary
)
plt
.
xlabel
(
class_names
[
train_labels
[
i
]])
/usr/local/lib/python3.5/dist-packages/matplotlib/cbook/deprecation.py:107: MatplotlibDeprecationWarning: Passing one of 'on', 'true', 'off', 'false' as a boolean is deprecated; use an actual boolean (True/False) instead.
warnings.warn(message, mplDeprecation, stacklevel=1)
Build the model
Building the neural network requires configuring the layers of the model, then compiling the model.
Setup the layers
The basic building block of a neural network is thelayer. Layers extract representations from the data fed into them. And, hopefully, these representations are more meaningful for the problem at hand.
Most of deep learning consists of chaining together simple layers. Most layers, liketf.keras.layers.Dense
, have parameters that are learned during training.
model
=
keras
.
Sequential
([
keras
.
layers
.
Flatten
(
input_shape
=(
28
,
28
)),
keras
.
layers
.
Dense
(
128
,
activation
=
tf
.
nn
.
relu
),
keras
.
layers
.
Dense
(
10
,
activation
=
tf
.
nn
.
softmax
)
])
The first layer in this network,tf.keras.layers.Flatten
, transforms the format of the images from a 2d-array (of 28 by 28 pixels), to a 1d-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 twotf.keras.layers.Dense
layers. These are densely-connected, or fully-connected, neural layers. The firstDense
layer has 128 nodes (or neurons). The second (and last) layer is a 10-node_softmax_layer—this returns an array of 10 probability scores that sum to 1. Each node contains a score that indicates the probability that the current image belongs to one of the 10 classes.
Compile the model
Before the model is ready for training, it needs a few more settings. These are added during the model's_compile_step:
- Loss function —This measures how accurate the model is during training. We want to minimize this function to "steer" the model in the right direction.
- Optimizer —This is how the model is updated based on the data it sees and its loss function.
- Metrics —Used to monitor the training and testing steps. The following example uses accuracy , the fraction of the images that are correctly classified.
model
.
compile
(
optimizer
=
tf
.
train
.
AdamOptimizer
(),
loss
=
'sparse_categorical_crossentropy'
,
metrics
=[
'accuracy'
])
Train the model
Training the neural network model requires the following steps:
- Feed the training data to the model—in this example, the
train_images
andtrain_labels
arrays. - The model learns to associate images and labels.
- We ask the model to make predictions about a test set—in this example, the
test_images
array. We verify that the predictions match the labels from thetest_labels
array.
To start training, call themodel.fit
method—the model is "fit" to the training data:
model
.
fit
(
train_images
,
train_labels
,
epochs
=
5
)
Epoch 1/5
60000/60000 [==============================] - 2s 37us/step - loss: 0.4942 - acc: 0.8255
Epoch 2/5
60000/60000 [==============================] - 2s 34us/step - loss: 0.3723 - acc: 0.8656
Epoch 3/5
60000/60000 [==============================] - 2s 37us/step - loss: 0.3333 - acc: 0.8794
Epoch 4/5
60000/60000 [==============================] - 2s 35us/step - loss: 0.3099 - acc: 0.8861
Epoch 5/5
60000/60000 [==============================] - 2s 35us/step - loss: 0.2938 - acc: 0.8918
As the model trains, the loss and accuracy metrics are displayed. This model reaches an accuracy of about 0.88 (or 88%) on the training data.
Evaluate accuracy
Next, compare how the model performs on the test dataset:
test_loss
,
test_acc
=
model
.
evaluate
(
test_images
,
test_labels
)
print
(
'Test accuracy:'
,
test_acc
)
10000/10000 [==============================] - 0s 20us/step
Test accuracy: 0.8693
It turns out, 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 is an example ofoverfitting. Overfitting is when a machine learning model performs worse on new data than on their training data.
Make predictions
With the model trained, we can use it to make predictions about some images.
predictions
=
model
.
predict
(
test_images
)
Here, the model has predicted the label for each image in the testing set. Let's take a look at the first prediction:
predictions
[
0
]
array([2.5046500e-05, 9.4638374e-08, 2.3706765e-07, 3.2167595e-06,
1.4285071e-06, 2.1461691e-03, 2.6124888e-05, 9.9495485e-02,
1.7809383e-04, 8.9812416e-01], dtype=float32)
A prediction is an array of 10 numbers. These describe the "confidence" of the model that the image corresponds to each of the 10 different articles of clothing. We can see which label has the highest confidence value:
np
.
argmax
(
predictions
[
0
])
9
So the model is most confident that this image is an ankle boot, orclass_names[9]
. And we can check the test label to see this is correct:
test_labels
[
0
]
9
Let's plot several images with their predictions. Correct prediction labels are green and incorrect prediction labels are red.
# Plot the first 25 test images, their predicted label, and the true label
# Color correct predictions in green, incorrect predictions in red
plt
.
figure
(
figsize
=(
10
,
10
))
for
i
in
range
(
25
):
plt
.
subplot
(
5
,
5
,
i
+
1
)
plt
.
xticks
([])
plt
.
yticks
([])
plt
.
grid
(
'off'
)
plt
.
imshow
(
test_images
[
i
],
cmap
=
plt
.
cm
.
binary
)
predicted_label
=
np
.
argmax
(
predictions
[
i
])
true_label
=
test_labels
[
i
]
if
predicted_label
==
true_label
:
color
=
'green'
else
:
color
=
'red'
plt
.
xlabel
(
"{} ({})"
.
format
(
class_names
[
predicted_label
],
class_names
[
true_label
]),
color
=
color
)
/usr/local/lib/python3.5/dist-packages/matplotlib/cbook/deprecation.py:107: MatplotlibDeprecationWarning: Passing one of 'on', 'true', 'off', 'false' as a boolean is deprecated; use an actual boolean (True/False) instead.
warnings.warn(message, mplDeprecation, stacklevel=1)
Finally, use the trained model to make a prediction about a single image.
# Grab an image from the test dataset
img
=
test_images
[
0
]
print
(
img
.
shape
)
(28, 28)
tf.keras
models are optimized to make predictions on abatch, or collection, of examples at once. So even though we're using a single image, we need to add it to a list:
# Add the image to a batch where it's the only member.
img
=
(
np
.
expand_dims
(
img
,
0
))
print
(
img
.
shape
)
(1, 28, 28)
Now predict the image:
predictions
=
model
.
predict
(
img
)
print
(
predictions
)
[[2.5046500e-05 9.4638374e-08 2.3706765e-07 3.2167627e-06 1.4285083e-06
2.1461679e-03 2.6124937e-05 9.9495515e-02 1.7809383e-04 8.9812416e-01]]
model.predict
returns a list of lists, one for each image in the batch of data. Grab the predictions for our (only) image in the batch:
prediction
=
predictions
[
0
]
np
.
argmax
(
prediction
)
9
And, as before, the model predicts a label of 9.