Commit 2390974a authored by Chris Shallue's avatar Chris Shallue Committed by GitHub
Browse files

Merge pull request #485 from cshallue/gfile

Use open() instead of tf.gfile.FastGFile()
parents 2cbd3375 c6a4f783
......@@ -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:
......
......@@ -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):
......
......@@ -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):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment