torch.manual_seed(1234) loader = torch.utils.data.DataLoader( dataset, batch_size=3, shuffle=True, num_workers=2, ) for batch in loader: ...
確定! 回上一頁