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
2390974a
Commit
2390974a
authored
Sep 30, 2016
by
Chris Shallue
Committed by
GitHub
Sep 30, 2016
Browse files
Merge pull request #485 from cshallue/gfile
Use open() instead of tf.gfile.FastGFile()
parents
2cbd3375
c6a4f783
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 @
2390974a
...
...
@@ -210,7 +210,7 @@ def _to_sequence_example(image, decoder, vocab):
Returns:
A SequenceExample proto.
"""
with
tf
.
gfile
.
FastGFile
(
image
.
filename
,
"r"
)
as
f
:
with
open
(
image
.
filename
,
"r"
)
as
f
:
encoded_image
=
f
.
read
()
try
:
...
...
inception/inception/data/build_image_data.py
View file @
2390974a
...
...
@@ -199,7 +199,8 @@ def _process_image(filename, coder):
width: integer, image width in pixels.
"""
# 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.
if
_is_png
(
filename
):
...
...
inception/inception/data/build_imagenet_data.py
View file @
2390974a
...
...
@@ -313,7 +313,8 @@ def _process_image(filename, coder):
width: integer, image width in pixels.
"""
# 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.
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