I am trying to load inceptionV3 from torchvision models using the following command:
import torchvision.models as models inception=models.inception_v3(pretrained=True,progress=True)
But it is taking close to three minutes to load. I am running it on a local server so I dont think computation power is the issue.
Are you seeing this long duration only when initializing the model the first time (the checkpoint might be downloaded in the background) or also when you just rerun the same code?