LSTM peephole conncections is one of improvements for classic LSTM network. In this tutorial, we will introduce the difference between LSTM peephole conncections and classic LSTM.
Difference between LSTM peephole conncections and classic LSTM
We should compare them with their formulas.
Classic LSTM | LSTM with Peephole Connections |
We can find the main differences between classic LSTM and LSTM with peephole connections are in three gates.
LSTM with peephole connections add hidden state Ct to three gates in classic lstm.
We also can find the detail in tensorflow source code.