tf.compat.v1.ReaderBase

本文详细介绍了TensorFlow中的ReaderBase类,它是不同Reader类型的基类,用于从工作单元(如文件名)中读取记录。ReaderBase通过队列实现与工作的解耦,支持读取、重置和状态序列化等功能。在使用中,注意ReaderBase不适用于即时执行(eager execution),建议使用tf.data获取数据。
摘要由CSDN通过智能技术生成

参考 tf.compat - 云+社区 - 腾讯云

目录

Class ReaderBase

__init__

Properties

reader_ref

supports_serialize

Methods

num_records_produced

num_work_units_completed

read

read_up_to

reset

restore_state

serialize_state


Class ReaderBase

Base class for different Reader types, that produce a record every step.

Conceptually, Readers convert string 'work units' into records (key, value pairs). Typically the 'work units' are filenames and the records are extracted from the contents of those files. We want a single record produced per step, but a work unit can correspond to many records.

Therefore we introduce some decoupling using a queue. The queue contains the work units and the Reader dequeues from the queue when it is asked to produce a record (via Read()) but it has finished the last work unit.

Eager Compatibility

Readers are not compatible with eager execution. Instead, please use tf.data to get data into your model.

__init__

View source

__init__(
    reader_ref,
    supports_serialize=False
)

Creates a new ReaderBase.

Args:

  • reader_ref: The operation that implements the reader.
  • supports_serialize: True if the reader implementation can serialize its state.

Raises:

  • RuntimeError: If eager execution is enabled.

Properties

reader_ref

Op that implements the reader.

supports_serialize

Whether the Reader implementation can serialize its state.

Methods

num_records_produced

View source

num_records_produced(name=None)

Returns the number of records this reader has produced.

This is the same as the number of Read executions that have succeeded.

Args:

  • name: A name for the operation (optional).

Returns:

  • An int64 Tensor.

num_work_units_completed

View source

num_work_units_completed(name=None)

Returns the number of work units this reader has finished processing.

Args:

  • name: A name for the operation (optional).

Returns:

  • An int64 Tensor.

read

View source

read(
    queue,
    name=None
)

Returns the next record (key, value) pair produced by a reader.

Will dequeue a work unit from queue if necessary (e.g. when the Reader needs to start reading from a new file since it has finished with the previous file).

Args:

  • queue: A Queue or a mutable string Tensor representing a handle to a Queue, with string work items.
  • name: A name for the operation (optional).

Returns:

  • A tuple of Tensors (key, value).
  • key: A string scalar Tensor.
  • value: A string scalar Tensor.

read_up_to

View source

read_up_to(
    queue,
    num_records,
    name=None
)

Returns up to num_records (key, value) pairs produced by a reader.

Will dequeue a work unit from queue if necessary (e.g., when the Reader needs to start reading from a new file since it has finished with the previous file). It may return less than num_records even before the last batch.

Args:

  • queue: A Queue or a mutable string Tensor representing a handle to a Queue, with string work items.
  • num_records: Number of records to read.
  • name: A name for the operation (optional).

Returns:

  • A tuple of Tensors (keys, values).
  • keys: A 1-D string Tensor.
  • values: A 1-D string Tensor.

reset

View source

reset(name=None)

Restore a reader to its initial clean state.

Args:

  • name: A name for the operation (optional).

Returns:

  • The created Operation.

restore_state

View source

restore_state(
    state,
    name=None
)

Restore a reader to a previously saved state.

Not all Readers support being restored, so this can produce an Unimplemented error.

Args:

  • state: A string Tensor. Result of a SerializeState of a Reader with matching type.
  • name: A name for the operation (optional).

Returns:

  • The created Operation.

serialize_state

View source

serialize_state(name=None)

Produce a string tensor that encodes the state of a reader.

Not all Readers support being serialized, so this can produce an Unimplemented error.

Args:

  • name: A name for the operation (optional).

Returns:

  • A string Tensor.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Wanderer001

ROIAlign原理

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值