rnn and contrib.rnn¶
Build-in recurrent neural network layers are provided in the following two modules:
|
Recurrent neural network module. |
|
Contrib recurrent neural network module. |
Recurrent Cells¶
Long-Short Term Memory (LSTM) network cell. |
|
Gated Rectified Unit (GRU) network cell. |
|
Abstract base class for RNN cells |
|
Sequentially stacking multiple RNN cells. |
|
Bidirectional RNN cell. |
|
Applies dropout on input. |
|
Applies Zoneout on base cell. |
|
Adds residual connection as described in Wu et al, 2016 (https://arxiv.org/abs/1609.08144). |
|
1D Convolutional RNN cell. |
|
2D Convolutional RNN cell. |
|
3D Convolutional RNN cells |
|
1D Convolutional LSTM network cell. |
|
2D Convolutional LSTM network cell. |
|
3D Convolutional LSTM network cell. |
|
1D Convolutional Gated Rectified Unit (GRU) network cell. |
|
2D Convolutional Gated Rectified Unit (GRU) network cell. |
|
3D Convolutional Gated Rectified Unit (GRU) network cell. |
|
Applies Variational Dropout on base cell. |
|
Long-Short Term Memory Projected (LSTMP) network cell. |