├── README.md ├── data └── imdb │ ├── test.txt │ └── train.txt ├── dataset.py ├── helper_functions.py ├── main.py └── model.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithreddy024/VAE-Text-Generation/HEAD/README.md -------------------------------------------------------------------------------- /data/imdb/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithreddy024/VAE-Text-Generation/HEAD/data/imdb/test.txt -------------------------------------------------------------------------------- /data/imdb/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithreddy024/VAE-Text-Generation/HEAD/data/imdb/train.txt -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithreddy024/VAE-Text-Generation/HEAD/dataset.py -------------------------------------------------------------------------------- /helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithreddy024/VAE-Text-Generation/HEAD/helper_functions.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithreddy024/VAE-Text-Generation/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithreddy024/VAE-Text-Generation/HEAD/model.py --------------------------------------------------------------------------------