本指南会训练一个对服饰(例如运动鞋和衬衫)图像进行分类的神经网络模型。即使您不了解所有细节也没关系,本教程只是简要介绍了一个完整的 TensorFlow 程序,而且后续我们会详细介绍。
本指南使用的是tf.keras,它是一种用于在 TensorFlow 中构建和训练模型的高阶 API。
安装
1pip install tensorflow==2.0.0-alpha0
导入相关库
x1from __future__ import absolute_import, division, print_function, unicode_literals
2
3# TensorFlow and tf.keras
4import tensorflow as tf
5from tensorflow import keras
6
7# Helper libraries
8import numpy as np
9import matplotlib.pyplot as plt
10
11print(tf.__version__)
本指南使用Fashion MNIST数据集,其中包含 70000 张灰度图像,涵盖 10 个类别。以下图像显示了单件服饰在较低分辨率(28x28 像素)下的效果:
Figure 1. Fashion-MNIST 样本 |
Fashion MNIST 的作用是成为经典 MNIST 数据集的简易替换,后者通常用作计算机视觉机器学习程序的“Hello, World”入门数据集。MNIST数据集包含手写数字(0、1、2 等)的图像,这些图像的格式与我们在本教程中使用的服饰图像的格式相同。
本指南使用 Fashion MNIST 实现多样化,并且它比常规 MNIST更具挑战性。这两个数据集都相对较小,用于验证某个算法能否如期正常运行。它们都是测试和调试代码的良好起点。
我们将使用 60000 张图像训练网络,并使用 10000 张图像评估经过学习的网络分类图像的准确率。您可以从 TensorFlow 直接访问 Fashion MNIST,只需导入和加载数据即可:
xxxxxxxxxx
31fashion_mnist = keras.datasets.fashion_mnist
2
3(train_images, train_labels), (test_images, test_labels) = fashion_mnist.load_data()
加载数据返回4个NumPy数组:
train_images
和train_labels
数组是训练集,即模型用于学习的数据。test_images
和 test_labels
数组用于测试模型。图像为28x28的NumPy数组,像素值介于0到255之间。标签是整数数组,介于0到9之间。这些标签对应于图像代表的服饰所属的类别:
Label | Class |
---|---|
0 | T-shirt/top(T 恤衫/上衣) |
1 | Trouser(裤子) |
2 | Pullover (套衫) |
3 | Dress(裙子) |
4 | Coat(外套) |
5 | Sandal(凉鞋) |
6 | Shirt(衬衫) |
7 | Sneaker(运动鞋) |
8 | Bag(包包) |
9 | Ankle boot(踝靴) |
每个图像都映射到一个标签,由于类名不包含在数据集中,因此将它们存储在此处以便在绘制图像时使用:
xxxxxxxxxx
21class_names = ['T-shirt/top', 'Trouser', 'Pullover', 'Dress', 'Coat',
2 'Sandal', 'Shirt', 'Sneaker', 'Bag', 'Ankle boot']
我们先探索数据集的格式,然后再训练模型。以下内容显示训练集中有 60000 张图像,每张图像都表示为 28x28 像素:
xxxxxxxxxx
11train_images.shape
(60000, 28, 28)
同样,训练集中有60,000个标签:
xxxxxxxxxx
11len(train_labels)
60000
每个标签都是0到9之间的整数:
xxxxxxxxxx
11train_labels
array([9, 0, 0, ..., 3, 0, 5], dtype=uint8)
测试集中有10,000个图像。同样,每个图像表示为28 x 28像素:
xxxxxxxxxx
11test_images.shape
(10000, 28, 28)
测试集包含10,000个图像标签:
xxxxxxxxxx
11len(test_labels)
10000
在训练网络之前必须对数据进行预处理。 如果您检查训练集中的第一个图像,您将看到像素值落在0到255的范围内:
xxxxxxxxxx
51plt.figure()
2plt.imshow(train_images[0])
3plt.colorbar()
4plt.grid(False)
5plt.show()
我们将这些值缩小到 0 到 1 之间,然后将其馈送到神经网络模型。为此,将图像组件的数据类型从整数转换为浮点数,然后除以 255。以下是预处理图像的函数:
务必要以相同的方式对训练集和测试集进行预处理:
xxxxxxxxxx
31train_images = train_images / 255.0
2
3test_images = test_images / 255.0
为了验证数据的格式是否正确以及我们是否已准备好构建和训练网络,让我们显示训练集中的前25个图像,并在每个图像下方显示类名。
xxxxxxxxxx
91plt.figure(figsize=(10,10))
2for i in range(25):
3 plt.subplot(5,5,i+1)
4 plt.xticks([])
5 plt.yticks([])
6 plt.grid(False)
7 plt.imshow(train_images[i], cmap=plt.cm.binary)
8 plt.xlabel(class_names[train_labels[i]])
9plt.show()
构建神经网络需要配置模型的层,然后编译模型。
神经网络的基本构造块是层。层从馈送到其中的数据中提取表示结果。希望这些表示结果有助于解决手头问题。
大部分深度学习都会把简单的层连在一起。大部分层(例如 tf.keras.layers.Dense
)都具有在训练期间要学习的参数。
xxxxxxxxxx
51model = keras.Sequential([
2 keras.layers.Flatten(input_shape=(28, 28)),
3 keras.layers.Dense(128, activation='relu'),
4 keras.layers.Dense(10, activation='softmax')
5])
该网络中的第一层tf.keras.layers.Flatten
将图像的格式从二维数组(28 x 28像素)转换为一维数组(28 * 28 = 784像素))。可以将该层视为图像中像素未堆叠的行,并排列这些行。该层没有要学习的参数;它只改动数据的格式。
在像素被展平之后,网络由两个tf.keras.layers.Dense
层的序列组成。这些是密集连接或全连接的神经层。第一个Dense
层有128个节点(或神经元)。第二个(也是最后一个)层是具有 10 个节点的 softmax
层,该层会返回一个具有 10 个概率得分的数组,这些得分的总和为 1。每个节点包含一个得分,表示当前图像属于 10 个类别中某一个的概率。
模型还需要再进行几项设置才可以开始训练。这些设置会添加到模型的编译步骤:
xxxxxxxxxx
31model.compile(optimizer='adam',
2 loss='sparse_categorical_crossentropy',
3 metrics=['accuracy'])
训练神经网络模型需要以下步骤:
train_images
和 train_labels
数组。test_labels
数组中的标签一致。要开始训练,请调用 model.fit
方法,使模型与训练数据“拟合”:
xxxxxxxxxx
11model.fit(train_images, train_labels, epochs=5)
xxxxxxxxxx
51Epoch 1/5
260000/60000 [==============================] - 5s 87us/step - loss: 0.5033 - acc: 0.8242
3......
4Epoch 5/5
560000/60000 [==============================] - 5s 88us/step - loss: 0.2941 - acc: 0.8917
在模型训练期间,系统会显示损失和准确率指标。该模型在训练数据上的准确率达到 0.88(即 88%)。
接下来,比较模型在测试数据集上的表现情况:
xxxxxxxxxx
31test_loss, test_acc = model.evaluate(test_images, test_labels)
2
3print('\nTest accuracy:', test_acc)
输出:
xxxxxxxxxx
2110000/10000 [==============================] - 1s 50us/step
2Test accuracy: 0.8734
结果表明,模型在测试数据集上的准确率略低于在训练数据集上的准确率。训练准确率和测试准确率之间的这种差异表示出现过拟合(overfitting)。如果机器学习模型在新数据上的表现不如在训练数据上的表现,也就是泛化性不好,就表示出现过拟合。
模型经过训练后,我们可以使用它对一些图像进行预测。
xxxxxxxxxx
11predictions = model.predict(test_images)
在本示例中,模型已经预测了测试集中每张图像的标签。我们来看看第一个预测:
xxxxxxxxxx
11predictions[0]
输出:
xxxxxxxxxx
31array([6.2482708e-05, 2.4860196e-08, 9.7165821e-07, 4.7436039e-08,
2 2.0804382e-06, 1.3316551e-02, 9.8731316e-06, 3.4591161e-02,
3 1.2390658e-04, 9.5189297e-01], dtype=float32)
预测结果是一个具有 10 个数字的数组,这些数字说明模型对于图像对应于 10 种不同服饰中每一个服饰的“confidence(置信度)”。我们可以看到哪个标签的置信度值最大:
xxxxxxxxxx
11np.argmax(predictions[0])
9
因此,模型非常确信这张图像是踝靴或属于 class_names[9]。我们可以检查测试标签以查看该预测是否正确:
xxxxxxxxxx
11test_labels[0]
9
我们可以将该预测绘制成图来查看全部 10 个通道
xxxxxxxxxx
301def plot_image(i, predictions_array, true_label, img):
2 predictions_array, true_label, img = predictions_array[i], true_label[i], img[i]
3 plt.grid(False)
4 plt.xticks([])
5 plt.yticks([])
6
7 plt.imshow(img, cmap=plt.cm.binary)
8
9 predicted_label = np.argmax(predictions_array)
10 if predicted_label == true_label:
11 color = 'blue'
12 else:
13 color = 'red'
14
15 plt.xlabel("{} {:2.0f}% ({})".format(class_names[predicted_label],
16 100*np.max(predictions_array),
17 class_names[true_label]),
18 color=color)
19
20def plot_value_array(i, predictions_array, true_label):
21 predictions_array, true_label = predictions_array[i], true_label[i]
22 plt.grid(False)
23 plt.xticks([])
24 plt.yticks([])
25 thisplot = plt.bar(range(10), predictions_array, color="#777777")
26 plt.ylim([0, 1])
27 predicted_label = np.argmax(predictions_array)
28
29 thisplot[predicted_label].set_color('red')
30 thisplot[true_label].set_color('blue')
让我们看看第0个图像,预测和预测数组。
xxxxxxxxxx
71i = 0
2plt.figure(figsize=(6,3))
3plt.subplot(1,2,1)
4plot_image(i, predictions, test_labels, test_images)
5plt.subplot(1,2,2)
6plot_value_array(i, predictions, test_labels)
7plt.show()
xxxxxxxxxx
71i = 12
2plt.figure(figsize=(6,3))
3plt.subplot(1,2,1)
4plot_image(i, predictions, test_labels, test_images)
5plt.subplot(1,2,2)
6plot_value_array(i, predictions, test_labels)
7plt.show()
我们用它们的预测绘制几张图像。正确的预测标签为蓝色,错误的预测标签为红色。数字表示预测标签的百分比(总计为 100)。请注意,即使置信度非常高,也有可能预测错误。
xxxxxxxxxx
121# 绘制前X个测试图像,预测标签和真实标签。
2# 用蓝色标记正确的预测,用红色标记错误的预测。
3num_rows = 5
4num_cols = 3
5num_images = num_rows*num_cols
6plt.figure(figsize=(2*2*num_cols, 2*num_rows))
7for i in range(num_images):
8 plt.subplot(num_rows, 2*num_cols, 2*i+1)
9 plot_image(i, predictions, test_labels, test_images)
10 plt.subplot(num_rows, 2*num_cols, 2*i+2)
11 plot_value_array(i, predictions, test_labels)
12plt.show()
最后,使用训练的模型对单个图像进行预测。
xxxxxxxxxx
41# 从测试数据集中获取图像
2img = test_images[0]
3
4print(img.shape)
tf.keras
模型已经过优化,可以一次性对样本批次或样本集进行预测。因此,即使我们使用单个图像,仍需要将其添加到列表中:
xxxxxxxxxx
41# 将图像添加到批次中,它是唯一的成员。
2img = (np.expand_dims(img,0))
3
4print(img.shape)
(1, 28, 28)
现在预测此图像的正确标签:
xxxxxxxxxx
31predictions_single = model.predict(img)
2
3print(predictions_single)
xxxxxxxxxx
21plot_value_array(0, predictions_single, test_labels)
2_ = plt.xticks(range(10), class_names, rotation=45)
model.predict
返回一组列表,每个列表对应批次数据中的每张图像。(仅)获取批次数据中相应图像的预测结果:
xxxxxxxxxx
11np.argmax(predictions_single[0])
9
和前面的一样,模型预测标签为9。
最新版本:https://www.mashangxue123.com/tensorflow/tf2-tutorials-keras-basic_classification.html 英文版本:https://tensorflow.google.cn/beta/tutorials/keras/basic_classification 翻译建议PR:https://github.com/mashangxue/tensorflow2-zh/edit/master/r2/tutorials/keras/basic_classification.md