Skip to content

Latest commit

 

History

History
55 lines (33 loc) · 1.68 KB

File metadata and controls

55 lines (33 loc) · 1.68 KB

@wholebuzz/search / Exports / record

Module: record

Table of contents

Classes

Functions

Functions

createBinaryRecordReader

createBinaryRecordReader(fileSystem: FileSystem, url: string): Promise<RecordReader>

Creates a .tfrecord file reader using arbitrary buffers instead of protobuf.

Parameters

Name Type Description
fileSystem FileSystem -
url string The URL of the file.tfbinary to read records from.

Returns: Promise<RecordReader>

Defined in: src/record.ts:12


createBinaryRecordWriter

createBinaryRecordWriter(fileSystem: FileSystem, url: string): Promise<RecordWriter>

Creates a .tfrecord file writer using arbitrary buffers instead of protobuf.

Parameters

Name Type Description
fileSystem FileSystem -
url string The URL of the file.tfbinary to read records from.

Returns: Promise<RecordWriter>

Defined in: src/record.ts:20