├── .gitignore ├── README.md ├── corpus ├── dev.txt.in ├── dev.txt.out ├── test.txt.in ├── test.txt.out ├── train.txt.in └── train.txt.out ├── models └── config.json ├── requirements.txt ├── seq2seq.py ├── seq2seq_model.py ├── utils ├── data_utils.py └── distributions.py └── vrae.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chung-I/Variational-Recurrent-Autoencoder-Tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /corpus/dev.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chung-I/Variational-Recurrent-Autoencoder-Tensorflow/HEAD/corpus/dev.txt.in -------------------------------------------------------------------------------- /corpus/dev.txt.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chung-I/Variational-Recurrent-Autoencoder-Tensorflow/HEAD/corpus/dev.txt.out -------------------------------------------------------------------------------- /corpus/test.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chung-I/Variational-Recurrent-Autoencoder-Tensorflow/HEAD/corpus/test.txt.in -------------------------------------------------------------------------------- /corpus/test.txt.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chung-I/Variational-Recurrent-Autoencoder-Tensorflow/HEAD/corpus/test.txt.out -------------------------------------------------------------------------------- /corpus/train.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chung-I/Variational-Recurrent-Autoencoder-Tensorflow/HEAD/corpus/train.txt.in -------------------------------------------------------------------------------- /corpus/train.txt.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chung-I/Variational-Recurrent-Autoencoder-Tensorflow/HEAD/corpus/train.txt.out -------------------------------------------------------------------------------- /models/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chung-I/Variational-Recurrent-Autoencoder-Tensorflow/HEAD/models/config.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow-gpu==0.12.1 2 | -------------------------------------------------------------------------------- /seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chung-I/Variational-Recurrent-Autoencoder-Tensorflow/HEAD/seq2seq.py -------------------------------------------------------------------------------- /seq2seq_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chung-I/Variational-Recurrent-Autoencoder-Tensorflow/HEAD/seq2seq_model.py -------------------------------------------------------------------------------- /utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chung-I/Variational-Recurrent-Autoencoder-Tensorflow/HEAD/utils/data_utils.py -------------------------------------------------------------------------------- /utils/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chung-I/Variational-Recurrent-Autoencoder-Tensorflow/HEAD/utils/distributions.py -------------------------------------------------------------------------------- /vrae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chung-I/Variational-Recurrent-Autoencoder-Tensorflow/HEAD/vrae.py --------------------------------------------------------------------------------