Difference between revisions of "Long Short-Term Memory (LSTM)"
| Line 16: | Line 16: | ||
** [[Bidirectional Long Short-Term Memory (BI-LSTM) with Attention Mechanism]] | ** [[Bidirectional Long Short-Term Memory (BI-LSTM) with Attention Mechanism]] | ||
** [[Average-Stochastic Gradient Descent (SGD) Weight-Dropped LSTM (AWD-LSTM)]] | ** [[Average-Stochastic Gradient Descent (SGD) Weight-Dropped LSTM (AWD-LSTM)]] | ||
| + | ** [[Hopfield Network (HN)]] | ||
* [http://karpathy.github.io/2015/05/21/rnn-effectiveness/ Andrej Karpathy blog] | * [http://karpathy.github.io/2015/05/21/rnn-effectiveness/ Andrej Karpathy blog] | ||
* [http://colah.github.io/posts/2015-08-Understanding-LSTMs/ Understanding LSTM Networks | Christopher Olah] | * [http://colah.github.io/posts/2015-08-Understanding-LSTMs/ Understanding LSTM Networks | Christopher Olah] | ||
Revision as of 13:16, 11 June 2020
YouTube Search ...Google search
- Neural Network Zoo | Fjodor Van Veen
- A Beginner's Guide to LSTMs
- Recurrent Neural Network (RNN) Variants:
- Andrej Karpathy blog
- Understanding LSTM Networks | Christopher Olah
- Animated RNN, LSTM and GRU | Raimi Karim - Towards Data Science
- Predicting Stock Price with LSTM | Asutosh Nayak - Towards Data Science ...Code
A LSTM (Long Short-term Memory) Neural Network is just another kind of Artificial Neural Network, which falls in the category of Recurrent Neural Network (RNN). What makes LSTM Neural Networks different from regular Neural Networks is, they have LSTM cells as neurons in some of their layers. Much like Convolutional Layers help a (Deep) Convolutional Neural Network (DCNN/CNN) learn about image features, LSTM cells help the Network learn about temporal data, something which other Machine Learning models traditionally struggled with. ... Each LSTM cell in our Neural Network will only look at a single column of its inputs, and also at the previous column’s LSTM cell’s output. Normally, we feed our LSTM Neural Network a whole matrix as its input, where each column corresponds to something that “comes before” the next column. This way, each LSTM cell will have two different input vectors: the previous LSTM cell’s output (which gives it some information about the previous input column) and its own input column. LSTM: How To Train Neural Networks To Write Like Lovecraft | Strikingloo