I want to the pretrained model of ResNet 101

I want to the pretrained model of ResNet101. I can’t download the pretrained mode in github successfully.

You should be able to get the pretrained resnet101 from torchvision as:

import torchvision.models as models
model = models.resnet101(pretrained=True)

Do you get an error using this code?