How to load ResNeXt101_64x4d in Pytorch

How to load models like resnext101_64x4d as whenever i write

model=torchvision.models.resnext101_64x4d(pretrained=True,process=True)

I get an attribute error like torchvision.models has no attribute resnext101_64x4d although the pretrained weights for these models are available,how can i load such a model?

This model doesn’t seem to be listed in torchvision.models.
Are you maybe referring to @Cadene’s repo?

Yes ,i was wondering whether we can load pretrained models other than the ones listed in torchvision .models

Sure, once you have the model definition and the checkpoint file, you can load whichever model you like.
I’m not sure, if the linked repo is already integrated into our hub, but you can use it following their instructions in the repo.