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
c6a4f783
"src/vscode:/vscode.git/clone" did not exist on "85f1c192824b036f8f2a32eb3e1df3c513224138"
Commit
c6a4f783
authored
Sep 30, 2016
by
Christopher Shallue
Browse files
Use open() instead of tf.gfile.FastGFile()
parent
2cbd3375
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
im2txt/im2txt/data/build_mscoco_data.py
im2txt/im2txt/data/build_mscoco_data.py
+1
-1
inception/inception/data/build_image_data.py
inception/inception/data/build_image_data.py
+2
-1
inception/inception/data/build_imagenet_data.py
inception/inception/data/build_imagenet_data.py
+2
-1
No files found.
im2txt/im2txt/data/build_mscoco_data.py
View file @
c6a4f783
...
@@ -210,7 +210,7 @@ def _to_sequence_example(image, decoder, vocab):
...
@@ -210,7 +210,7 @@ def _to_sequence_example(image, decoder, vocab):
Returns:
Returns:
A SequenceExample proto.
A SequenceExample proto.
"""
"""
with
tf
.
gfile
.
FastGFile
(
image
.
filename
,
"r"
)
as
f
:
with
open
(
image
.
filename
,
"r"
)
as
f
:
encoded_image
=
f
.
read
()
encoded_image
=
f
.
read
()
try
:
try
:
...
...
inception/inception/data/build_image_data.py
View file @
c6a4f783
...
@@ -199,7 +199,8 @@ def _process_image(filename, coder):
...
@@ -199,7 +199,8 @@ def _process_image(filename, coder):
width: integer, image width in pixels.
width: integer, image width in pixels.
"""
"""
# Read the image file.
# Read the image file.
image_data
=
tf
.
gfile
.
FastGFile
(
filename
,
'r'
).
read
()
with
open
(
filename
,
'r'
)
as
f
:
image_data
=
f
.
read
()
# Convert any PNG to JPEG's for consistency.
# Convert any PNG to JPEG's for consistency.
if
_is_png
(
filename
):
if
_is_png
(
filename
):
...
...
inception/inception/data/build_imagenet_data.py
View file @
c6a4f783
...
@@ -313,7 +313,8 @@ def _process_image(filename, coder):
...
@@ -313,7 +313,8 @@ def _process_image(filename, coder):
width: integer, image width in pixels.
width: integer, image width in pixels.
"""
"""
# Read the image file.
# Read the image file.
image_data
=
tf
.
gfile
.
FastGFile
(
filename
,
'r'
).
read
()
with
open
(
filename
,
'r'
)
as
f
:
image_data
=
f
.
read
()
# Clean the dirty data.
# Clean the dirty data.
if
_is_png
(
filename
):
if
_is_png
(
filename
):
...
...
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