The Keras layer we are using in this program is an artificial recurrent neural network architecture which is also called 'Long Short Term Memory' or LSTM. LSTM architecture is mostly used in Deep Learning. Unlike Standard feed for neural networks LSTM has feedback connections. It not only process single data point such as images but also entire sequence of data such as spech and videos. LSTM are widely used for sequence prediction problems and proven to be extremely effective. The reason LSTM works so well is because it is able to store past information that is important and forgive the information that is not important..
------------------------------------ END Description of FIRST-PROJECT ----------------------------------