Resnet50 is no longer 'available' through the hub.load() since the model hub revamp #645
Unanswered
rchevalier-brainchip
asked this question in
Q&A
Replies: 0 comments
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.
-
Hi,
Currently, with onnx 1.15.0, using
hub.load('resnet50')
fails withHTTP Error 404
.Hub tries to get the model from https://media.githubusercontent.com/media/onnx/models/main/archive/vision/classification/resnet/model/resnet50-v1-7.onnx as per the manifest info.
On the contrary:
hub.load("resnet50", repo="onnx/models:5faef4c33eba0395177850e1e31c4a6a9e634c82")
works fine (i.e. using the commit pre-revamp) and fetches the model from https://media.githubusercontent.com/media/onnx/models/5faef4c33eba0395177850e1e31c4a6a9e634c82/vision/classification/resnet/model/resnet50-v1-7.onnxWhat is the correct way to go?
Thanks!
RC
Beta Was this translation helpful? Give feedback.
All reactions