pretrained-models.pytorch
pretrained-models.pytorch copied to clipboard
Se_resnext101_32x4d, When i download the pretrained weight, how to load it. And i can't use the internet to download the weight ,when i build the model.
model = se_resnext101_32x4d(pretrained='se_resnext101_32x4d-3b2fe3d8.pth')
KeyError: 'se_resnext101_32x4d-3b2fe3d8.pth'
I don't kown how to use it, who can help me
I used this code to finetune.
import pretrainedmodels
model_name = 'se_resnext101_32x4d'
model = pretrainedmodels.__dict__[model_name](num_classes=1000, pretrained='imagenet')