Programm ausgeführt
import torch
torch.utils.data.DataLoader(
dataset = dataset,
batch_size = 100,
shuffle = True,
num_workers = 0)
Fehleranweisung
AttributeError: module ‘torch.utils’ has no attribute ‘data’
Die Lösung besteht darin, "import torch.utils.data" anstelle von "import torch" zu verwenden.
Recommended Posts