Loading resnet50 prettrianed model in PyTorch

Question:

I want to use resnet50 pretrained model using PyTorch and I am using the following code for loading it:

    import torch
    model = torch.hub.load("pytorch/vision", "resnet50", weights="IMAGENET1K_V2")

Although I upgrade the torchvision but I receive the following error:

Any idea?

Asked By: dtr43

||

Answers:

As per the latest definition, we now load models using torchvision library, you can try that using:

from torchvision.models import resnet50, ResNet50_Weights

# Old weights with accuracy 76.130%
model1 = resnet50(weights=ResNet50_Weights.IMAGENET1K_V1)

# New weights with accuracy 80.858%
model2 = resnet50(weights=ResNet50_Weights.IMAGENET1K_V2)
Answered By: Azhan Mohammed
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.