tf.compat.v2.nn.RNNCellDeviceWrapper

View source on GitHub

Class RNNCellDeviceWrapper

Operator that ensures an RNNCell runs on a particular device.

__init__

View source

__init__(
    *args,
    **kwargs
)

Construct a DeviceWrapper for cell with device device.

Ensures the wrapped cell is called with tf.device(device).

Args:

  • cell: An instance of RNNCell.
  • device: A device string or function, for passing to tf.device.
  • **kwargs: dict of keyword arguments for base layer.

Properties

output_size

state_size

Methods

tf.compat.v2.nn.RNNCellDeviceWrapper.get_initial_state

View source

get_initial_state(
    inputs=None,
    batch_size=None,
    dtype=None
)

tf.compat.v2.nn.RNNCellDeviceWrapper.zero_state

View source

zero_state(
    batch_size,
    dtype
)