-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pretrained_resnet HTTP Error 403: rate limit exceeded #4
Comments
fixed by directly feeding state_dict |
I think it is because v0.6.0 is somewhat abandoned. |
Thanks for reporting this! This is an issue on the PyTorch side, as I get the same error with: import torch
model = torch.hub.load('pytorch/vision:v0.9.0', 'resnet18', pretrained=True) I opened an issue with PyTorch (pytorch/pytorch#61755) and will keep this issue open until that's resolved. |
I think it works without the version number. |
I still get the same error on Colab with: import torch
model = torch.hub.load('pytorch/vision', 'resnet18', pretrained=True) |
Interesting, I guess their server is broken. It worked for me yesterday. |
The issue is being tracked here: pytorch/vision#4156 |
@ruotianluo the issue is temporarily fixed via 43f4119 |
pretrained_resnest works.
The text was updated successfully, but these errors were encountered: