You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 23, 2023. It is now read-only.
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 Forward Pass
Reference
Andrew Ng, Sequential Models Course, Deep Learning Specialization
About
The aim of this implementation is to help to learn structure of basic LSTM (LSTM cell forward, LSTM cell backward, etc..)