day19 通过极简方案快速构建手写数字识别模型 (百度飞浆搬运)

注:——原文

通过极简方案构建手写数字识别模型

上一节介绍了创新性的“横纵式”教学法,有助于深度学习初学者快速掌握深度学习理论知识,并在过程中让读者获得真实建模的实战体验。在“横纵式”教学法中,纵向概要介绍模型的基本代码结构和极简实现方案,如 图1 所示。本节将使用这种极简实现方案快速完成手写数字识别的建模。


图1:“横纵式”教学法—纵向极简实现方案



前提条件

在数据处理前,首先要加载飞桨平台与“手写数字识别”模型相关的类库,实现方法如下。

#加载飞桨和相关类库
import paddle
from paddle.nn import Linear
import paddle.nn.functional as F
import os
import numpy as np
import matplotlib.pyplot as plt
/opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/matplotlib/__init__.py:107: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
  from collections import MutableMapping
/opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/matplotlib/rcsetup.py:20: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
  from collections import Iterable, Mapping
/opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/matplotlib/colors.py:53: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
  from collections import Sized
2021-03-27 16:38:27,968 - INFO - font search path ['/opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/ttf', '/opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/afm', '/opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts']
2021-03-27 16:38:28,313 - INFO - generated new fontManager

数据处理

飞桨提供了多个封装好的数据集API,涵盖计算机视觉、自然语言处理、推荐系统等多个领域,帮助读者快速完成深度学习任务。如在手写数字识别任务中,通过paddle.vision.datasets.MNIST可以直接获取处理好的MNIST训练集、测试集,飞桨API支持如下常见的学术数据集:

  • mnist
  • cifar
  • Conll05
  • imdb
  • imikolov
  • movielens
  • sentiment
  • uci_housing
  • wmt14
  • wmt16

通过paddle.vision.datasets.MNIST API设置数据读取器,代码如下所示。

# 设置数据读取器,API自动读取MNIST数据训练集
train_dataset = paddle.vision.datasets.MNIST(mode='train')
Cache file /home/aistudio/.cache/paddle/dataset/mnist/train-images-idx3-ubyte.gz not found, downloading https://dataset.bj.bcebos.com/mnist/train-images-idx3-ubyte.gz 
Begin to download

Download finished
Cache file /home/aistudio/.cache/paddle/dataset/mnist/train-labels-idx1-ubyte.gz not found, downloading https://dataset.bj.bcebos.com/mnist/train-labels-idx1-ubyte.gz 
Begin to download
........
Download finished

通过如下代码读取任意一个数据内容,观察打印结果。

train_data0 = np.array(train_dataset[0][0])
train_label_0 = np.array(train_dataset[0][1])

# 显示第一batch的第一个图像
import matplotlib.pyplot as plt
plt.figure("Image") # 图像窗口名称
plt.figure(figsize=(2,2))
plt.imshow(train_data0, cmap=plt.cm.binary)
plt.axis('on') # 关掉坐标轴为 off
plt.title('image') # 图像题目
plt.show()

print("图像数据形状和对应数据为:", train_data0.shape)
print("图像标签形状和对应数据为:", train_label_0.shape, train_label_0)
print("\n打印第一个batch的第一个图像,对应标签数字为{}".format(train_label_0))
/opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/matplotlib/cbook/__init__.py:2349: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
  if isinstance(obj, collections.Iterator):
/opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/matplotlib/cbook/__init__.py:2366: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
  return list(data) if isinstance(data, collections.MappingView) else data
/opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/numpy/lib/type_check.py:546: DeprecationWarning: np.asscalar(a) is deprecated since NumPy v1.16, use a.item() instead
  'a.item() instead', DeprecationWarning, stacklevel=1)



<Figure size 432x288 with 0 Axes>

png

图像数据形状和对应数据为: (28, 28)
图像标签形状和对应数据为: (1,) [5]

打印第一个batch的第一个图像,对应标签数字为[5]

使用matplotlib工具包将其显示出来,如图2 所示。可以看到图片显示的数字是5,和对应标签数字一致。


图2:matplotlib打印结果示意图




说明:

飞桨将维度是28×28的手写数字图像转成向量形式存储,因此使用飞桨数据加载器读取到的手写数字图像是长度为784(28×28)的向量。


飞桨API的使用方法

熟练掌握飞桨API的使用方法,是使用飞桨完成各类深度学习任务的基础,也是开发者必须掌握的技能。

飞桨API文档获取方式及目录结构

登录“飞桨官网->文档->API文档”,可以获取飞桨API文档。在飞桨最新的版本中,对API做了许多优化,目录结构与说明,如 图3 所示。


图3:飞桨API文档目录



API文档使用方法

飞桨每个API的文档结构一致,包含接口形式、功能说明和计算公式、参数和返回值、代码示例四个部分。 以Relu函数为例,API文档结构如 图5 所示。通过飞桨API文档,读者不仅可以详细查看函数功能,还可以通过可运行的代码示例来实践API的使用。


图5:Relu的API文档



模型设计

在房价预测深度学习任务中,我们使用了单层且没有非线性变换的模型,取得了理想的预测效果。在手写数字识别中,我们依然使用这个模型预测输入的图形数字值。其中,模型的输入为784维(28×28)数据,输出为1维数据,如 图6 所示。


图6:手写数字识别网络模型



输入像素的位置排布信息对理解图像内容非常重要(如将原始尺寸为28×28图像的像素按照7×112的尺寸排布,那么其中的数字将不可识别),因此网络的输入设计为28×28的尺寸,而不是1×784,以便于模型能够正确处理像素之间的空间信息。


说明:

事实上,采用只有一层的简单网络(对输入求加权和)时并没有处理位置关系信息,因此可以猜测出此模型的预测效果可能有限。在后续优化环节介绍的卷积神经网络则更好的考虑了这种位置关系信息,模型的预测效果也会有显著提升。


下面以类的方式组建手写数字识别的网络,实现方法如下所示。

# 定义mnist数据识别网络结构,同房价预测网络
class MNIST(paddle.nn.Layer):
    def __init__(self):
        super(MNIST, self).__init__()
        
        # 定义一层全连接层,输出维度是1
        self.fc = paddle.nn.Linear(in_features=784, out_features=1)
        
    # 定义网络结构的前向计算过程
    def forward(self, inputs):
        outputs = self.fc(inputs)
        return outputs

训练配置

训练配置需要先生成模型实例(设为“训练”状态),再设置优化算法和学习率(使用随机梯度下降SGD,学习率设置为0.001),实现方法如下所示。

# 声明网络结构
model = MNIST()

def train(model):
    # 启动训练模式
    model.train()
    # 加载训练集 batch_size 设为 16
    train_loader = paddle.io.DataLoader(paddle.vision.datasets.MNIST(mode='train'), 
                                        batch_size=16, 
                                        shuffle=True)
    # 定义优化器,使用随机梯度下降SGD优化器,学习率设置为0.001
    opt = paddle.optimizer.SGD(learning_rate=0.001, parameters=model.parameters())

训练过程

训练过程采用二层循环嵌套方式,训练完成后需要保存模型参数,以便后续使用。

  • 内层循环:负责整个数据集的一次遍历,遍历数据集采用分批次(batch)方式。
  • 外层循环:定义遍历数据集的次数,本次训练中外层循环10次,通过参数EPOCH_NUM设置。
# 图像归一化函数,将数据范围为[0, 255]的图像归一化到[-1, 1]
def norm_img(img):
    # 验证传入数据格式是否正确,img的shape为[batch_size, 28, 28]
    assert len(img.shape) == 3
    batch_size, img_h, img_w = img.shape[0], img.shape[1], img.shape[2]
    # 归一化图像数据
    img = img/127.5 - 1
    # 将图像形式reshape为[batch_size, 784]
    img = paddle.reshape(img, [batch_size, img_h*img_w])
    
    return img
import paddle
# 确保从paddle.vision.datasets.MNIST中加载的图像数据是np.ndarray类型
paddle.vision.set_image_backend('cv2')

def train(model):
    model.train()
    # 加载训练集 batch_size 设为 16
    train_loader = paddle.io.DataLoader(paddle.vision.datasets.MNIST(mode='train'), 
                                        batch_size=16, 
                                        shuffle=True)
    opt = paddle.optimizer.SGD(learning_rate=0.001, parameters=model.parameters())
    EPOCH_NUM = 5
    for epoch in range(EPOCH_NUM):
        for batch_id, data in enumerate(train_loader()):
            # 这里data[0]的shape是[16,28,28]
            images = norm_img(data[0]).astype('float32')
            labels = data[1].astype('float32')
            
            #前向计算的过程
            predicts = model(images)
            
            # 计算损失
            loss = F.square_error_cost(predicts, labels)
            avg_loss = paddle.mean(loss)
            
            #每训练了1000批次的数据,打印下当前Loss的情况
            if batch_id % 1000 == 0:
                print("epoch_id: {}, batch_id: {}, loss is: {}".format(epoch, batch_id, avg_loss.numpy()))
            
            #后向传播,更新参数的过程
            avg_loss.backward()
            opt.step()
            opt.clear_grad()
            
train(model)
paddle.save(model.state_dict(), './mnist.pdparams')
epoch_id: 0, batch_id: 0, loss is: [4.085724]
epoch_id: 0, batch_id: 1000, loss is: [3.2535486]
epoch_id: 0, batch_id: 2000, loss is: [3.5573611]
epoch_id: 0, batch_id: 3000, loss is: [1.9143385]
epoch_id: 1, batch_id: 0, loss is: [3.8201323]
epoch_id: 1, batch_id: 1000, loss is: [4.495055]
epoch_id: 1, batch_id: 2000, loss is: [3.2898548]
epoch_id: 1, batch_id: 3000, loss is: [3.582982]
epoch_id: 2, batch_id: 0, loss is: [3.7423344]
epoch_id: 2, batch_id: 1000, loss is: [3.9570389]
epoch_id: 2, batch_id: 2000, loss is: [3.1959314]
epoch_id: 2, batch_id: 3000, loss is: [4.1941967]
epoch_id: 3, batch_id: 0, loss is: [4.741079]
epoch_id: 3, batch_id: 1000, loss is: [2.5155258]
epoch_id: 3, batch_id: 2000, loss is: [3.1782084]
epoch_id: 3, batch_id: 3000, loss is: [5.791985]
epoch_id: 4, batch_id: 0, loss is: [3.5202157]
epoch_id: 4, batch_id: 1000, loss is: [2.5459313]
epoch_id: 4, batch_id: 2000, loss is: [3.3989928]
epoch_id: 4, batch_id: 3000, loss is: [4.4417005]

另外,从训练过程中损失所发生的变化可以发现,虽然损失整体上在降低,但到训练的最后一轮,损失函数值依然较高。可以猜测手写数字识别完全复用房价预测的代码,训练效果并不好。接下来我们通过模型测试,获取模型训练的真实效果。

模型测试

模型测试的主要目的是验证训练好的模型是否能正确识别出数字,包括如下四步:

  • 声明实例
  • 加载模型:加载训练过程中保存的模型参数,
  • 灌入数据:将测试样本传入模型,模型的状态设置为校验状态(eval),显式告诉框架我们接下来只会使用前向计算的流程,不会计算梯度和梯度反向传播。
  • 获取预测结果,取整后作为预测标签输出。

在模型测试之前,需要先从'./work/example_0.png'文件中读取样例图片,并进行归一化处理。

# 导入图像读取第三方库
import matplotlib.pyplot as plt
import numpy as np
from PIL import Image

img_path = './work/test.png'
# 读取原始图像并显示
im = Image.open('./work/test.png')
plt.imshow(im)
plt.show()
# 将原始图像转为灰度图
im = im.convert('L')
print('原始图像shape: ', np.array(im).shape)
# 使用Image.ANTIALIAS方式采样原始图片
im = im.resize((28, 28), Image.ANTIALIAS)
plt.imshow(im)
plt.show()
print("采样后图片shape: ", np.array(im).shape)

png

原始图像shape:  (501, 500)

png

采样后图片shape:  (28, 28)
# 读取一张本地的样例图片,转变成模型输入的格式
def load_image(img_path):
    # 从img_path中读取图像,并转为灰度图
    im = Image.open(img_path).convert('L')
    print(np.array(im))
    im = im.resize((28, 28), Image.ANTIALIAS)
    im = np.array(im).reshape(1, -1).astype(np.float32)
    # 图像归一化,保持和数据集的数据范围一致
    im = im / 127.5 - 1
    return im
# 定义预测过程
model = MNIST()
params_file_path = 'mnist.pdparams'
img_path = './work/example_0.png'
# 加载模型参数
param_dict = paddle.load(params_file_path)
model.load_dict(param_dict)
# 灌入数据
model.eval()
tensor_img = load_image(img_path)
result = model(paddle.to_tensor(tensor_img))
#  预测输出取整,即为预测的数字,打印结果
print("本次预测的数字是", result.numpy().astype('int32'))
[[255 255 255 ... 255 255 255]
 [255 255 255 ... 255 255 255]
 [255 255 255 ... 255 255 255]
 ...
 [255 255 255 ... 255 255 255]
 [255 255 255 ... 255 255 255]
 [255 255 255 ... 255 255 255]]
本次预测的数字是 [[-3]]

从打印结果来看,模型预测出的数字是与实际输出的图片的数字不一致。这里只是验证了一个样本的情况,如果我们尝试更多的样本,可发现许多数字图片识别结果是错误的。因此完全复用房价预测的实验并不适用于手写数字识别任务!

接下来我们会对手写数字识别实验模型进行逐一改进,直到获得令人满意的结果。

作业 2-1:

  1. 使用飞桨API paddle.vision.datasets.MNIST的mode函数获得测试集数据,计算当前模型的准确率。

  2. 怎样进一步提高模型的准确率?可以在接下来内容开始前,写出你想到的优化思路。

import paddle.vision as vision
val_dataset = vision.datasets.MNIST(mode='test')
Cache file /home/aistudio/.cache/paddle/dataset/mnist/t10k-images-idx3-ubyte.gz not found, downloading https://dataset.bj.bcebos.com/mnist/t10k-images-idx3-ubyte.gz 
Begin to download

Download finished
Cache file /home/aistudio/.cache/paddle/dataset/mnist/t10k-labels-idx1-ubyte.gz not found, downloading https://dataset.bj.bcebos.com/mnist/t10k-labels-idx1-ubyte.gz 
Begin to download
..
Download finished
test_loader = paddle.io.DataLoader(paddle.vision.datasets.MNIST(mode='test'), 
                                        batch_size=16, 
                                        shuffle=True)
for batch_id, data in enumerate(test_loader()):
        images = norm_img(data[0]).astype('float32')
        labels = data[1].astype('float32')
            
        #前向计算的过程
        predicts = model(images)
        if batch_id%20==0:
            print("真实值:{}".format(labels[0]))
            print("预测值:{}".format(predicts[0]))                                        
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [2.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [2.66802597])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [1.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [1.44252908])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [2.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [0.81982845])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [7.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [6.86713266])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [1.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [2.36643267])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [3.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [3.24208498])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [3.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [5.04463673])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [8.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [3.59674311])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [1.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [2.08297849])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [9.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [6.66351032])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [2.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [1.55118728])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [7.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [5.96025324])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [4.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [5.03244257])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [2.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [1.09942675])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [7.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [6.75647116])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [1.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [1.54489148])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [8.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [4.52284002])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [0.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [1.19396770])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [3.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [3.78723168])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [2.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [3.38099909])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [8.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [6.52251911])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [2.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [3.71845841])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [1.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [2.36501193])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [6.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [5.75321436])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [1.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [1.62414742])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [8.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [8.99540710])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [4.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [5.38656187])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [9.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [6.90742731])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [4.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [5.97537756])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [1.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [1.53373015])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [0.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [-0.23045167])
真实值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=True,
       [8.])
预测值:Tensor(shape=[1], dtype=float32, place=CPUPlace, stop_gradient=False,
       [4.94674730])
posted @ 2021-01-27 23:15  晨起  阅读(482)  评论(0编辑  收藏  举报