Deep Learning - RNN Part 3 LSTM, Bi-Directional RNN, Deep RNN
LSTM
LSTM came out in 1997 and GRU is a simplification of it. In LSTM, we have the “forget gate”, $\Gamma_r$, the output gate $\Gamma_o$, and the update gate $\Gamma_u$. We do NOT have $\Gamma_r$
...