Program executed
torch.utils.data.DataLoader(
dataset = dataset,
batch_size = 100,
shuffle = True,
num_workers = 8)
Error statement
RuntimeError: DataLoader worker (pid(s) ~) exited unexpectedly
Due to lack of memory
Reduce num_workers to a value that does not cause an error
ex) num_workers = 0
etc.