onnx / models

A collection of pre-trained, state-of-the-art models in the ONNX format

Home Page:http://onnx.ai/models/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Resnet50 is no longer 'available' through the hub.load() since the model hub revamp

rchevalier-brainchip opened this issue · comments

commented

Discussed in #645

Originally posted by rchevalier-brainchip December 26, 2023
Hi,

Currently, with onnx 1.15.0, using hub.load('resnet50') fails with HTTP 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.onnx

What is the correct way to go?

Thanks!
RC

Hi @rchevalier-brainchip
Thanks for bringing this to our attention. This issue is caused due to a folder renaming in the repo.
#647 is pending review right now and once merged will fix the above 404 issue.

@jcwchen

commented

Thanks a lot!

#647 has merged and I can verify the following:

from onnx import hub
hub.load("resnet50")

Please close the issue if there are no further questions :)

commented

Thanks for the quick fix :) all good on my side !