youngjoo-epfl / LSTM-autoencoder

TensorFlow LSTM-autoencoder implementation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LSTM-autoencoder

TensorFlow LSTM-autoencoder implementation

Usage

# hidden_num : the number of hidden units in each RNN-cell
# inputs : a list of tensor with size (batch_num x step_num x elem_num)
ae = LSTMAutoencoder(hidden_num, inputs)
...
sess.run(init)
...
sess.run(ae.train, feed_dict={input_variable:input_array,...})

Reference

Unsupervised Learning of Video Representations using LSTMs (Nitish Srivastava, Elman Mansimov, Ruslan Salakhutdinov)

http://arxiv.org/abs/1502.04681

About

TensorFlow LSTM-autoencoder implementation

License:MIT License


Languages

Language:Python 100.0%