Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/omerbsezer/basiclstm

The aim of this implementation is to help to learn structure of basic LSTM (LSTM cell forward, LSTM cell backward, etc..)
https://github.com/omerbsezer/basiclstm

deep-learning lstm-neural-networks tutorial-code

Last synced: about 2 months ago
JSON representation

The aim of this implementation is to help to learn structure of basic LSTM (LSTM cell forward, LSTM cell backward, etc..)

Awesome Lists containing this project

README

        

# Basic Long Short Term Memory (LSTM)

* Long Short Term Memory (LSTM) is a type of deep learning model that is mostly used for analysis of sequential data (time series data prediction).
* There are different application areas that are used: Language model, neural machine translation, music generation, time series prediction, financial prediction, etc.
* The aim of this implementation is to help to learn structure of basic LSTM (LSTM cell forward, LSTM cell backward, etc..).
* Code is adapted from Andrew Ng's Course 'Sequential models'.

## LSTM Cell

lstm_cell

## LSTM Forward Pass

lstm_fw

## Reference

* Andrew Ng, Sequential Models Course, Deep Learning Specialization