Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion objax/zoo/vgg.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self, pretrained=False):
"""
if not os.path.exists(_VGG19_NPY):
raise FileNotFoundError(
'You must download vgg19.npy from %s and save it to %s' % (_VGG19_URL, _VGG19_NPY))
'Follow the directions from %s to download vgg19.npy and save it to %s' % (_VGG19_URL, _VGG19_NPY))
if not os.path.exists(_SYNSET_PATH):
request.urlretrieve(_SYNSET_URL, _SYNSET_PATH)
self.data_dict = np.load(_VGG19_NPY, encoding='latin1', allow_pickle=True).item()
Expand Down