當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python tf.keras.layers.StackedRNNCells用法及代碼示例


Wrapper 允許一堆 RNN 單元格作為單個單元格運行。

繼承自:LayerModule

用法

tf.keras.layers.StackedRNNCells(
    cells, **kwargs
)

參數

  • cells RNN 單元實例列表。

屬性

  • output_size
  • state_size

用於實現高效的堆疊 RNN。

例子:

batch_size = 3
sentence_max_length = 5
n_features = 2
new_shape = (batch_size, sentence_max_length, n_features)
x = tf.constant(np.reshape(np.arange(30), new_shape), dtype = tf.float32)

rnn_cells = [tf.keras.layers.LSTMCell(128) for _ in range(2)]
stacked_lstm = tf.keras.layers.StackedRNNCells(rnn_cells)
lstm_layer = tf.keras.layers.RNN(stacked_lstm)

result = lstm_layer(x)

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.keras.layers.StackedRNNCells。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。