Skip to content

Commit 5c30a6b

Browse files
authored
fix base_url (#9207)
The previous `base_url` led to 404 errors. This commit uses the correct base URL.
1 parent 674506c commit 5c30a6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

research/slim/datasets/imagenet.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def create_readable_names_for_imagenet_labels():
8686
"""
8787

8888
# pylint: disable=g-line-too-long
89-
base_url = 'https://raw.githubusercontent.com/tensorflow/models/master/research/inception/inception/data/'
89+
base_url = 'https://raw.githubusercontent.com/tensorflow/models/master/research/slim/datasets/'
9090
synset_url = '{}/imagenet_lsvrc_2015_synsets.txt'.format(base_url)
9191
synset_to_human_url = '{}/imagenet_metadata.txt'.format(base_url)
9292

0 commit comments

Comments
 (0)