Hi, I keep getting the following error despite submitting with a model_url file:
FileNotFoundError: /tmp/codalab/tmp9i0fuG/run/program/latest.pth can not be found.
Would appreciate any advice.
G.
Hi,
Your url leads to a zip file with the following structure:
model_weights.zip
tutorial_exps
latest.pth
when this zip is extracted your weights file path is under the tutorial_exps folder, but your model searchs for latest.pth in the same folder model.py is (same level as tutorial_exps)
so either you change your weights path in the model class to
tutorial_exps/latest.pth
or zip just the latest.pth file without the folder and upload to drive and update your url
Shai,
MAFAT Challenge Team