Very slow loading of the Convnet pretrained model on lesson 1

I’m not alone anymore :slight_smile: If you’re looking for a temporary workaround so you can run the notebooks, the following minor changes worked for me:

  1. Comment this line in dataset.py
    #from .dataloader import DataLoader

  2. Change this line in torch_imports.py
    from torch.utils.data import DataLoader, Dataset, TensorDataset (Add DataLoader to the torch.utils.data imports)

6 Likes