Created
July 19, 2017 13:41
-
-
Save emedvedev/dd056666337b54c13176da93d5b987b7 to your computer and use it in GitHub Desktop.
Converting an OCR dataset for Tensorflow into a singular TFRecords file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tensorflow as tf | |
def _bytes_feature(value): | |
return tf.train.Feature(bytes_list=tf.train.BytesList(value=[value])) | |
def _int64_feature(value): | |
return tf.train.Feature(int64_list=tf.train.Int64List(value=[value])) | |
writer = tf.python_io.TFRecordWriter('dataset.tfrecords') | |
with open('training-data.txt', 'r') as f: | |
pairs = [line.split() for line in f.readlines()] | |
for img_path, answer in pairs: | |
with open(img_path, 'rb') as img_file: | |
img = img_file.read() | |
example = tf.train.Example(features=tf.train.Features(feature={ | |
'image': _bytes_feature(img), | |
'answer': _bytes_feature(answer)})) | |
writer.write(example.SerializeToString()) | |
writer.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment