EfficientNetB0 weights are not downloading for me in torchvision 0.16 Nightly Build #503
Unanswered
dhruvvaidh
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hi @dhruvvaidh , Good question! I've not found this issue before. I'd say it could be an issue with the nightly build. Have you tried installing another version of PyTorch? Or even a stable version of This code snippet runs fine in Google Colab: import torch
import torchvision
weights = torchvision.models.EfficientNet_B0_Weights.DEFAULT
model = torchvision.models.efficientnet_b0(weights=weights)
print(f"torch version: {torch.__version__}")
print(f"torchvision version: {torchvision.__version__}")
print(model) Output:
See the notebook: https://colab.research.google.com/drive/1yNiIxDX8O2vAfi-C53E5ESApQsW-dqfO?usp=sharing |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am currently in module 8 of the course, and I am trying to load the weights of the EfficientNetB0 model, but I have been getting the following traceback. What do you think I should do to fix it?
Beta Was this translation helpful? Give feedback.
All reactions