Hello, I have previously been using the basic script to use trained model. But this week it has stopped working - the model file seems to no longer be available for download at:
arch = 'resnet50'
load the pre-trained weights
model_file = '%s_places365.pth.tar' % arch
if not os.access(model_file, os.W_OK):
weight_url = 'http://places2.csail.mit.edu/models_places365/' + model_file
os.system('wget ' + weight_url)