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
50f7f405
Unverified
Commit
50f7f405
authored
Jan 04, 2019
by
Karanbir Chahal
Committed by
GitHub
Jan 04, 2019
Browse files
Fix Typo of variable name
Fixes the variable name for the tf proto example function.
parent
40a660e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
research/object_detection/g3doc/using_your_own_dataset.md
research/object_detection/g3doc/using_your_own_dataset.md
+1
-1
No files found.
research/object_detection/g3doc/using_your_own_dataset.md
View file @
50f7f405
...
@@ -76,7 +76,7 @@ def create_cat_tf_example(encoded_cat_image_data):
...
@@ -76,7 +76,7 @@ def create_cat_tf_example(encoded_cat_image_data):
'image/width'
:
dataset_util
.
int64_feature
(
width
),
'image/width'
:
dataset_util
.
int64_feature
(
width
),
'image/filename'
:
dataset_util
.
bytes_feature
(
filename
),
'image/filename'
:
dataset_util
.
bytes_feature
(
filename
),
'image/source_id'
:
dataset_util
.
bytes_feature
(
filename
),
'image/source_id'
:
dataset_util
.
bytes_feature
(
filename
),
'image/encoded'
:
dataset_util
.
bytes_feature
(
encoded_image_data
),
'image/encoded'
:
dataset_util
.
bytes_feature
(
encoded_
cat_
image_data
),
'image/format'
:
dataset_util
.
bytes_feature
(
image_format
),
'image/format'
:
dataset_util
.
bytes_feature
(
image_format
),
'image/object/bbox/xmin'
:
dataset_util
.
float_list_feature
(
xmins
),
'image/object/bbox/xmin'
:
dataset_util
.
float_list_feature
(
xmins
),
'image/object/bbox/xmax'
:
dataset_util
.
float_list_feature
(
xmaxs
),
'image/object/bbox/xmax'
:
dataset_util
.
float_list_feature
(
xmaxs
),
...
...
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