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
fc2f94b3
Unverified
Commit
fc2f94b3
authored
Jan 03, 2019
by
pkulzc
Committed by
GitHub
Jan 03, 2019
Browse files
Merge pull request #5990 from karanchahal/patch-1
Fix variable name typo in OD g3 doc.
parents
40a660e8
50f7f405
Changes
1
Show 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 @
fc2f94b3
...
@@ -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