rwightman/gen-efficientnet-pytorch

Is uses Pip to load a pre-trained model equal to use PyTorch Hub to load a pre-trained model?

TianhaoFu opened this issue · 0 comments

I want use m = geffnet.create_model('mobilenetv3_large_100', pretrained=True) to replace
model = torch.hub.load('rwightman/gen-efficientnet-pytorch', 'efficientnet_b0', pretrained=True)
BTW, I use the pre-trained model aim to Fine-tuning the model.

Am i doing it right?

Thank you very much!
@rwightman