Commit 34495bde authored by Marianne Linhares Monteiro's avatar Marianne Linhares Monteiro Committed by GitHub
Browse files

Small fixes

parent 748eceae
...@@ -30,6 +30,7 @@ FLAGS = tf.flags.FLAGS ...@@ -30,6 +30,7 @@ FLAGS = tf.flags.FLAGS
tf.flags.DEFINE_string('input_dir', '', tf.flags.DEFINE_string('input_dir', '',
'Directory where CIFAR10 data is located.') 'Directory where CIFAR10 data is located.')
tf.flags.DEFINE_string('output_dir', '', tf.flags.DEFINE_string('output_dir', '',
'Directory where TFRecords will be saved.' 'Directory where TFRecords will be saved.'
'The TFRecords will have the same name as' 'The TFRecords will have the same name as'
...@@ -56,6 +57,7 @@ def read_pickle_from_file(filename): ...@@ -56,6 +57,7 @@ def read_pickle_from_file(filename):
data_dict = cPickle.load(f) data_dict = cPickle.load(f)
return data_dict return data_dict
def main(argv): def main(argv):
del argv # Unused. del argv # Unused.
...@@ -80,7 +82,6 @@ def main(argv): ...@@ -80,7 +82,6 @@ def main(argv):
'label': _int64_feature(labels[i]) 'label': _int64_feature(labels[i])
})) }))
record_writer.write(example.SerializeToString()) record_writer.write(example.SerializeToString())
record_writer.close() record_writer.close()
print('Done!') print('Done!')
......
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