tensorflow2.0用LSTM实现MNIST手写数字数据集分类

一般来说,用CNN来进行图像分类任务可以获得很高的准确率,而LSTM一般用于自然语言处理方面,但是,用LSTM也是可以实现图像分类并得到较高准确率的。代码如下:

import tensorflow as tf
import tensorflow.keras as keras
from tensorflow.keras import models, layers, optimizers
import matplotlib.pyplot as plt

# Mnist数据集加载
(x_train_all, y_train_all), (x_test, y_test) = keras.datasets.mnist.load_data()

# Mnist数据集简单归一化
x_train_all, x_test = x_train_all / 255.0, x_test / 255.0

x_train, x_test = x_train_all[:50000], x_train_all[50000:]
y_train, y_test = y_train_all[:50000], y_train_all[50000:]
print(x_train.shape)

# 构建模型
inputs = layers.Input(shape=(x_train.shape[1], x_train.shape[2]), name='inputs')
print(inputs.shape)
lstm = layers.LSTM(units=128, return_sequences=False)(inputs)
print(lstm.shape)
outputs = layers.Dense(10, activation='softmax')(lstm)
print(outputs.shape)
lstm = keras.Model(inputs, outputs)

# 查看模型
lstm.compile(optimizer=keras.optimizers.Adam(0.001),
             loss='sparse_categorical_crossentropy',
             metrics=['accuracy'])
lstm.summary()

# 训练模型
history = lstm.fit(x_train, y_train, batch_size=32, epochs=50, validation_split=0.1)

# 绘制准确率图像
data = {}
data['accuracy'] = history.history['accuracy']
data['val_accuracy'] = history.history['val_accuracy']
pd.DataFrame(data).plot(figsize=(8, 5))
plt.grid(True)
plt.axis([0, 30, 0, 1])
plt.show()

# 绘制损失图像
data = {}
data['loss'] = history.history['loss']
data['val_loss'] = history.history['val_loss']
pd.DataFrame(data).plot(figsize=(8, 5))
plt.grid(True)
plt.axis([0, 30, 0, 1])
plt.show()

# 验证模型:
lstm.evaluate(x_test,  y_test, verbose=2)

  • 7
    点赞
  • 50
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 8
    评论
好的,我可以为您介绍如何使用LSTM实现MNIST手写数字分类MNIST是一个常用的手写数字数据集,它包含60000个训练样本和10000个测试样本。每个样本是一个28x28的灰度图像,表示手写数字0-9中的一个。 LSTM(长短时记忆网络)是一种递归神经网络,特别适用于处理序列数据,如文本、语音、视频等。在MNIST手写数字分类任务中,我们可以将每个图像的像素值序列视为一个时间序列,然后使用LSTM对其进行分类。 以下是实现MNIST手写数字分类的步骤: 1. 准备数据集 首先,我们需要从Keras库中加载MNIST数据集。可以使用以下代码: ``` python from keras.datasets import mnist (x_train, y_train), (x_test, y_test) = mnist.load_data() ``` 数据集中的图像像素值范围在0到255之间,我们需要将其归一化到0到1之间。可以使用以下代码: ``` python x_train = x_train.astype('float32') / 255. x_test = x_test.astype('float32') / 255. ``` 还需要将标签转换为独热编码。可以使用以下代码: ``` python from keras.utils import to_categorical y_train = to_categorical(y_train, num_classes=10) y_test = to_categorical(y_test, num_classes=10) ``` 2. 构建LSTM模型 接下来,我们需要构建一个LSTM模型。可以使用以下代码: ``` python from keras.models import Sequential from keras.layers import LSTM, Dense model = Sequential() model.add(LSTM(128, input_shape=(28, 28))) model.add(Dense(10, activation='softmax')) model.summary() ``` 在这个模型中,我们使用了一个LSTM层和一个全连接层。LSTM层的输入形状是(28,28),因为每个图像都是28x28像素。全连接层的输出是10,因为我们要对10个数字进行分类。 3. 编译和训练模型 我们需要编译这个模型并对其进行训练。可以使用以下代码: ``` python model.compile(loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy']) model.fit(x_train, y_train, batch_size=128, epochs=10, validation_data=(x_test, y_test)) ``` 在这个模型中,我们使用了交叉熵作为损失函数,Adam作为优化器,并使用准确率作为度量标准。我们将训练数据分成大小为128的批次,并对模型进行10次迭代。 4. 评估模型 训练完成后,我们需要评估模型的性能。可以使用以下代码: ``` python score = model.evaluate(x_test, y_test, verbose=0) print('Test loss:', score[0]) print('Test accuracy:', score[1]) ``` 这将打印出测试集上的损失和准确率。 完整的代码如下: ``` python from keras.datasets import mnist from keras.utils import to_categorical from keras.models import Sequential from keras.layers import LSTM, Dense (x_train, y_train), (x_test, y_test) = mnist.load_data() x_train = x_train.astype('float32') / 255. x_test = x_test.astype('float32') / 255. y_train = to_categorical(y_train, num_classes=10) y_test = to_categorical(y_test, num_classes=10) model = Sequential() model.add(LSTM(128, input_shape=(28, 28))) model.add(Dense(10, activation='softmax')) model.summary() model.compile(loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy']) model.fit(x_train, y_train, batch_size=128, epochs=10, 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]) ``` 希望这能对您有所帮助!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

cofisher

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值