Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
5c30a6b0
Unverified
Commit
5c30a6b0
authored
Sep 18, 2020
by
Jakub Kaczmarzyk
Committed by
GitHub
Sep 18, 2020
Browse files
fix `base_url` (#9207)
The previous `base_url` led to 404 errors. This commit uses the correct base URL.
parent
674506c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
research/slim/datasets/imagenet.py
research/slim/datasets/imagenet.py
+1
-1
No files found.
research/slim/datasets/imagenet.py
View file @
5c30a6b0
...
@@ -86,7 +86,7 @@ def create_readable_names_for_imagenet_labels():
...
@@ -86,7 +86,7 @@ def create_readable_names_for_imagenet_labels():
"""
"""
# pylint: disable=g-line-too-long
# pylint: disable=g-line-too-long
base_url
=
'https://raw.githubusercontent.com/tensorflow/models/master/research/
inception/inception
/data/'
base_url
=
'https://raw.githubusercontent.com/tensorflow/models/master/research/
slim
/data
sets
/'
synset_url
=
'{}/imagenet_lsvrc_2015_synsets.txt'
.
format
(
base_url
)
synset_url
=
'{}/imagenet_lsvrc_2015_synsets.txt'
.
format
(
base_url
)
synset_to_human_url
=
'{}/imagenet_metadata.txt'
.
format
(
base_url
)
synset_to_human_url
=
'{}/imagenet_metadata.txt'
.
format
(
base_url
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment