LSTM
LSTM copied to clipboard
Single Long Short Term Memory (LSTM) cell : Verilog Implementation
trafficstars
Long Short Term Memory (LSTM) : Verilog Implementation
- Long Short Term Memory (LSTM) : Verilog Implementation
- Architecture
- Code structure
- Acknowledgement
Clone this repository:
git clone https://github.com/ahirsharan/LSTM.git
cd LSTM/
Architecture
LSTM

Code Structure
.
|
├── lstm_cell.v # LSTM cell
|
├── sigmoid.v # Approx Sigmoid Activation
|
├── tanh.v # Approx Tanh Activation
|
├── ConcatMultAdd.v # Concat and mutiply weights and add bias
|
├── Test.v # Test Bench for LSTM Cell
|
.