pytorch实现MNIST手写体识别(使用全连接神经网络)实验环境实验过程实验结果
实验环境pytorch 1.4Windows 10python 3.7cuda 10.1(我笔记本上没有可以使用cuda的显卡)实验过程1. 确定我们要加载的库import torchimport torch.nn as nnimport torchvision #这里面直接加载MNIST数据的方法import torchvision.transforms as transf...