Recurrent Cells#
Recurrent neural network cells for sequential data processing and temporal modeling. Includes vanilla RNN, gated recurrent units (GRU), minimal gated units (MGU), long short-term memory (LSTM), and unbalanced LSTM variants. Each cell maintains internal state across time steps for memory-dependent computations.
Base class for all recurrent neural network (RNN) cell implementations. |
|
Vanilla Recurrent Neural Network (RNN) cell implementation. |
|
Gated Recurrent Unit (GRU) cell implementation. |
|
Minimal Gated Unit (MGU) cell implementation. |
|
Long Short-Term Memory (LSTM) cell implementation. |
|
LSTM with UR gating mechanism. |