This reverts commit c6a4f783080c5310ce0e3244daa31af57df12def. Fixed tensorflow/tensorflow#4981
@@ -210,7 +210,7 @@ def _to_sequence_example(image, decoder, vocab):
Returns:
A SequenceExample proto.
"""
- with open(image.filename, "r") as f:
+ with tf.gfile.FastGFile(image.filename, "r") as f:
encoded_image = f.read()
try:
@@ -199,7 +199,7 @@ def _process_image(filename, coder):
width: integer, image width in pixels.
# Read the image file.
- with open(filename, 'r') as f:
+ with tf.gfile.FastGFile(filename, 'r') as f:
image_data = f.read()
# Convert any PNG to JPEG's for consistency.
@@ -313,7 +313,7 @@ def _process_image(filename, coder):
# Clean the dirty data.