View source on GitHub |
Wrapper allowing a stack of RNN cells to behave as a single cell.
Inherits From: Layer
tf.keras.layers.StackedRNNCells(
cells, **kwargs
)
Used to implement efficient stacked RNNs.
cells
: List of RNN cell instances.cells = [
keras.layers.LSTMCell(output_dim),
keras.layers.LSTMCell(output_dim),
keras.layers.LSTMCell(output_dim),
]
inputs = keras.Input((timesteps, input_dim))
x = keras.layers.RNN(cells)(inputs)
output_size
state_size
get_initial_state
get_initial_state(
inputs=None, batch_size=None, dtype=None
)