You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
device env: win10 py3.8
found in my env, when downloading yaml and pyth, raise "urllib.error.HTTPError: HTTP Error 404: Not Found",
it turned out that when concat url,
config_url = os.path.join(_URL_CONFIGS, _MODEL_ZOO_CONFIGS[name])
the sep added in the url in windows is '', which cause this error,
to solve in my env:
config_url = _URL_CONFIGS + '/ + _MODEL_ZOO_CONFIGS[name]
or as implemented in https://stackoverflow.com/questions/8223939/how-to-join-absolute-and-relative-urls
The text was updated successfully, but these errors were encountered: