microsoft / azure-percept-advanced-development

Azure Percept DK advanced topics
Other
69 stars 34 forks source link

PyTorchModelFromScratch training script #66

Open hnky opened 2 years ago

hnky commented 2 years ago

Describe the bug

After submitting the training job: run = experiment.submit(config)

The training script gives an error: User program failed with HTTPError: HTTP Error 404: Not Found

Driver log attached: 70_driver_log.txt

MaxStrange commented 2 years ago

Looks like this line:

Downloading: "https://github.com/pytorch/vision/archive/master.zip" to /root/.cache/torch/hub/master.zip

Fails with a 404. Looks like they changed from "master" to "main". So:

"https://github.com/pytorch/vision/archive/main.zip"

Should work. I'll look at where this line is happening in the script and see what I can do about updating it. Thanks for pointing this out.