Building Autoencoders in Keras
https://blog.keras.io/building-autoencoders-in-keras.html14.05.2016 · To build a LSTM-based autoencoder, first use a LSTM encoder to turn your input sequences into a single vector that contains information about the entire sequence, then repeat this vector n times (where n is the number of timesteps in the output sequence), and run a LSTM decoder to turn this constant sequence into the target sequence.