LSTM autoencoder implementation - autograd - PyTorch Forums
discuss.pytorch.org › t › lstm-autoencoderJul 26, 2017 · I am implementing LSTM autoencoder which is similar to the paper by Srivastava et. al (‘Unsupervised Learning of Video Representations using LSTMs’). In the above figure, the weights in the LSTM encoder is copied to those of the LSTM decoder. To implement this, is the encoder weights cloned to the decoder ? More specifically, is the snippet blow correct ? class Sequence(nn.Module): def ...