Module tfrecord::writer[][src]

Expand description

Writing TFRecord data format.

The RecordWriter is initialized by RecordWriterInit. It can write either Example, RawExampple, Vec<u8>, and many other record types. that implements GenericRecord, depending on your choice.

The type aliases ExampleWriter, RawExampleWriter and BytesWriter are RecordWriter writing specific record types.

Structs

The writer type.

The writer initializer.

Type Definitions

Alias to RecordWriter which input record type is Vec.

Alias to RecordWriter which input record type is Example.

Alias to RecordWriter which input record type is RawExample.