采用卷积神经网络分类MNIST数据集,MNIST数据集为数据,实现对MNIST数据集分类的操作,其中MNIST数据集有10类分别为手写数字0-9。
时间: 2023-12-03 11:23:34 浏览: 99
好的,下面是使用卷积神经网络分类MNIST数据集数字识别的代码,使用了TensorFlow框架:
```python
import tensorflow as tf
from tensorflow.keras import layers
# 加载数据
mnist = tf.keras.datasets.mnist
(x_train, y_train), (x_test, y_test) = mnist.load_data()
# 数据预处理
x_train = x_train.reshape(x_train.shape[0], 28, 28, 1)
x_test = x_test.reshape(x_test.shape[0], 28, 28, 1)
x_train, x_test = x_train / 255.0, x_test / 255.0
# 构建模型
model = tf.keras.Sequential([
layers.Conv2D(32, (3,3), activation='relu', input_shape=(28, 28, 1)),
layers.MaxPooling2D((2,2)),
layers.Conv2D(64, (3,3), activation='relu'),
layers.MaxPooling2D((2,2)),
layers.Conv2D(64, (3,3), activation='relu'),
layers.Flatten(),
layers.Dense(64, activation='relu'),
layers.Dense(10, activation='softmax')
])
# 编译模型
model.compile(optimizer='adam',
loss='sparse_categorical_crossentropy',
metrics=['accuracy'])
# 训练模型
history = model.fit(x_train, y_train, epochs=5,
validation_data=(x_test, y_test))
# 评估模型
test_loss, test_acc = model.evaluate(x_test, y_test, verbose=2)
print(test_acc)
```
这个代码使用了三个卷积层和两个池化层搭建了一个卷积神经网络,使用了Adam优化器和交叉熵损失函数进行模型的训练和评估。在训练5个epoch之后,模型在测试集上的准确率为98.92%。
阅读全文