pretrained-models.pytorch icon indicating copy to clipboard operation
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.

Open Timmmmmms opened this issue 6 years ago • 1 comments

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

Timmmmmms avatar May 11 '19 14:05 Timmmmmms

I used this code to finetune.

import pretrainedmodels
model_name = 'se_resnext101_32x4d'
model = pretrainedmodels.__dict__[model_name](num_classes=1000, pretrained='imagenet')

reppy4620 avatar Jul 10 '19 04:07 reppy4620