Module: recurrent.py
This module implements recurrent layers for Neural Networks
Authors
- Lokesh Mohanty (lokeshm@iisc.ac.in)
Version Info
- 06/01/2025: Initial version
GRUCell
Bases: GRUCell
Implements a GRU Cell
Source code in scirex/core/dl/nn/layers/recurrent.py
| class GRUCell(eqx.nn.GRUCell):
"""
Implements a GRU Cell
"""
|
LSTMCell
Bases: LSTMCell
Implements a LSTM Cell
Source code in scirex/core/dl/nn/layers/recurrent.py
| class LSTMCell(eqx.nn.LSTMCell):
"""
Implements a LSTM Cell
"""
|