tf.io.TFRecordWriter

View source on GitHub

Class TFRecordWriter

A class to write records to a TFRecords file.

Aliases:

This class implements __enter__ and __exit__, and can be used in with blocks like a normal file.

__init__

View source

__init__(
    path,
    options=None
)

Opens file path and creates a TFRecordWriter writing to it.

Args:

  • path: The path to the TFRecords file.
  • options: (optional) String specifying compression type, TFRecordCompressionType, or TFRecordOptions object.

Raises:

  • IOError: If path cannot be opened for writing.
  • ValueError: If valid compression_type can't be determined from options.

Methods

tf.io.TFRecordWriter.__enter__

View source

__enter__()

Enter a with block.

tf.io.TFRecordWriter.__exit__

View source

__exit__(
    unused_type,
    unused_value,
    unused_traceback
)

Exit a with block, closing the file.

tf.io.TFRecordWriter.close

View source

close()

Close the file.

tf.io.TFRecordWriter.flush

View source

flush()

Flush the file.

tf.io.TFRecordWriter.write

View source

write(record)

Write a string record to the file.

Args:

  • record: str