pytorch1.0批训练神经网络 import torch import torch.utils.data as Data # Torch 中提供了一种帮助整理数据结构的工具, 叫做 DataLoader, 能用它来包装自己的数据, 进行批训练. torch.manual_seed(1) # reproducible # 批训练的数据个数 BATCH_SIZE = 5 BATCH_SIZE = 8 x = torch.linspace(1, 10, 10) # this is x data (…