class tf.python_io.TFRecordWriter
See the guide: Data IO (Python functions)
A class to write records to a TFRecords file.
This class implements __enter__
and __exit__
, and can be used in with
blocks like a normal file.
__init__(path, options=None)
Opens file path
and creates a TFRecordWriter
writing to it.
path
: The path to the TFRecords file.options
: (optional) A TFRecordOptions object.IOError
: If path
cannot be opened for writing.close()
Close the file.
write(record)
Write a string record to the file.
record
: strDefined in tensorflow/python/lib/io/tf_record.py
.
© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/python_io/TFRecordWriter