├── .gitignore ├── Readme.md ├── data └── 20newsgroups.vocab ├── evaluate.py ├── model ├── data.py ├── evaluate.py ├── model.py └── test_evaluate.py ├── preprocess.py ├── requirements.txt ├── train.py └── vectors.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AYLIEN/adversarial-document-model/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AYLIEN/adversarial-document-model/HEAD/Readme.md -------------------------------------------------------------------------------- /data/20newsgroups.vocab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AYLIEN/adversarial-document-model/HEAD/data/20newsgroups.vocab -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AYLIEN/adversarial-document-model/HEAD/evaluate.py -------------------------------------------------------------------------------- /model/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AYLIEN/adversarial-document-model/HEAD/model/data.py -------------------------------------------------------------------------------- /model/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AYLIEN/adversarial-document-model/HEAD/model/evaluate.py -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AYLIEN/adversarial-document-model/HEAD/model/model.py -------------------------------------------------------------------------------- /model/test_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AYLIEN/adversarial-document-model/HEAD/model/test_evaluate.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AYLIEN/adversarial-document-model/HEAD/preprocess.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AYLIEN/adversarial-document-model/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AYLIEN/adversarial-document-model/HEAD/train.py -------------------------------------------------------------------------------- /vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AYLIEN/adversarial-document-model/HEAD/vectors.py --------------------------------------------------------------------------------