Open
Description
🐛 Describe the bug
Running the following code returns the error seen below. It seems like there is some type of dependency or call to torchvision. Torchvision, however, doesn't list the new efficientnet models.
import torch
from torch import hub
#import torchvision.models as models
resnet18_model = torch.hub.load('pytorch/vision:main',
'resnet18',
pretrained = True)
It seems like there is something missing. I have cleared my .cache folder, and even updated the efficientnet.py code on my local machine to match the latest. Still receiving this Import Error. I am running the following versions:
Even if I do a simple:
torch.hub.list('pytorch/vision')
I receive the following error:
Activity