pytorch 学习3(测试训练模型)
数据集准备
使用的是fashionMinst数据集
'''
数据集准备
'''
batch_size = 4 # 分批训练数据、每批数据量
DOWNLOAD_MNIST = False # 是否网上下载数据
#数据准备 都是灰度图像 输入的数据的图像通道数为1
# FashionMNIST,我是保存在data文件夹
if not(os.path.exists('./data/FashionMNIST/')) or not os.listdir('./data/FashionMNIST/'):#判断mnist数据集是否已下载
# not mnist dir or mnist is empyt dir
DOWNLOAD_MNIST = True
train_dataset = datasets.FashionMNIST(
root = './data',
train= True, #download train data
transform = transforms.ToTe
共有 0 条评论