How to Prepare Sequence Prediction for Truncated BPTT in Keras
Last Updated on August 14, 2019 Recurrent neural networks are able to learn the temporal dependence across multiple timesteps in sequence prediction problems. Modern recurrent neural networks like the Long Short-Term Memory, or LSTM, network are trained with a variation of the Backpropagation algorithm called Backpropagation Through Time. This algorithm has been modified further for efficiency on sequence prediction problems with very long sequences and is called Truncated Backpropagation Through Time. An important configuration parameter when training recurrent neural networks […]
Read more