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 was archived by the owner on Mar 31, 2025. It is now read-only.
FileNotFoundError Traceback (most recent call last)
in ()
38
39 # Load model with pretrained weights and make a prediction.
---> 40 model = vgg.VGG19(pretrained=True)
41 logit = model(img)
42 prob = objax.functional.softmax(logit)[0]
/usr/local/lib/python3.6/dist-packages/objax/zoo/vgg.py in init(self, pretrained)
55 if not os.path.exists(_VGG19_NPY):
56 raise FileNotFoundError(
---> 57 'You must download vgg19.npy from %s and save it to %s' % (_VGG19_URL, _VGG19_NPY))
58 if not os.path.exists(_SYNSET_PATH):
59 request.urlretrieve(_SYNSET_URL, _SYNSET_PATH)