Skip to content

[Detector Support]: Yolo-NAS notebook from documentation fails to run with 404 error #14457

Discussion options

You must be logged in to vote

For this running into this, there is a temporary workaround. First you need to change the first line of the notebook to import from the latest github commit.

! pip install -U git+https://github.com/Deci-AI/super-gradients

When you run it, you'll get an error about Index out of range referencing checkpoint_utils.py. From there, you'll need to edit checkpoint_utils.py to change line 1592 from
unique_filename = url.split("https://sghub.deci.ai/models/")[1].replace("/", "_").replace(" ", "_")

to

unique_filename = url.split("https://sg-hub-nv.s3.amazonaws.com/models/")[1].replace("/", "_").replace(" ", "_")

Replies: 6 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Answer selected by kidhasmoxy
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@dreaming0512
Comment options

Comment options

You must be logged in to vote
1 reply
@partytimeexcellent
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment