PyTorch——使用卷积进行序列处理



在本章中,我们提出一种替代方法,而这种方法依赖于同时在两个序列间的一个二维卷积神经网络。我们网络的每一层都根据迄今为止产生的输出序列重新编码源标记。因此,类注意力属性贯穿整个网络。

这里,我们重点是利用数据集中的值从特定池中创建顺序网络。此过程也最适用于“图像识别模块”。

Sequential Network

使用 PyTorch 使用卷积创建序列处理模型的步骤如下——

步骤 1

导入使用卷积进行序列处理所需的模块。

import keras 
from keras.datasets import mnist 
from keras.models import Sequential 
from keras.layers import Dense, Dropout, Flatten 
from keras.layers import Conv2D, MaxPooling2D 
import numpy as np

步骤 2

执行必要的操作以使用以下代码在相应序列中创建模式——

batch_size = 128 
num_classes = 10 
epochs = 12
# input image dimensions 
img_rows, img_cols = 28, 28
# the data, split between train and test sets 
(x_train, y_train), (x_test, y_test) = mnist.load_data()
x_train = x_train.reshape(60000,28,28,1) 
x_test = x_test.reshape(10000,28,28,1)
print('x_train shape:', x_train.shape) 
print(x_train.shape[0], 'train samples') 
print(x_test.shape[0], 'test samples')
y_train = keras.utils.to_categorical(y_train, num_classes) 
y_test = keras.utils.to_categorical(y_test, num_classes)

步骤 3

编译模型并按照展示在下面——提到的常规神经网络模型中适应模式−

model.compile(loss = 
keras.losses.categorical_crossentropy, 
optimizer = keras.optimizers.Adadelta(), metrics = 
['accuracy'])
model.fit(x_train, y_train, 
batch_size = batch_size, epochs = epochs, 
verbose = 1, validation_data = (x_test, y_test)) 
score = model.evaluate(x_test, y_test, verbose = 0) 
print('Test loss:', score[0]) 
print('Test accuracy:', score[1])

生成的输出如下——

Neural network model
广告