[TOC]
Python functions for directly manipulating TFRecord-formatted files.
See the @{$python/python_io} guide.
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.
Enter a with block.
tf.python_io.TFRecordWriter.__exit__(unused_type, unused_value, unused_traceback) {#TFRecordWriter.exit}
Exit a with block, closing the file.
Opens file path and creates a TFRecordWriter writing to it.
path: The path to the TFRecords file.options: (optional) A TFRecordOptions object.
IOError: Ifpathcannot be opened for writing.
Close the file.
Write a string record to the file.
record: str
An iterator that read the records from a TFRecords file.
path: The path to the TFRecords file.options: (optional) A TFRecordOptions object.
Strings.
IOError: Ifpathcannot be opened for reading.
The type of compression for the record.
Options used for manipulating TFRecord files.