├── .gitignore ├── LICENSE ├── autoencoders.py ├── doc2vec.py ├── nvdm.py ├── paragraph_vector.py ├── requirements.txt ├── test_autoencoder.py ├── test_d2v.py ├── test_w2v.py ├── word2vec.py └── word2vec_basic.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangz10/tensorflow-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangz10/tensorflow-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /autoencoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangz10/tensorflow-playground/HEAD/autoencoders.py -------------------------------------------------------------------------------- /doc2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangz10/tensorflow-playground/HEAD/doc2vec.py -------------------------------------------------------------------------------- /nvdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangz10/tensorflow-playground/HEAD/nvdm.py -------------------------------------------------------------------------------- /paragraph_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangz10/tensorflow-playground/HEAD/paragraph_vector.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangz10/tensorflow-playground/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangz10/tensorflow-playground/HEAD/test_autoencoder.py -------------------------------------------------------------------------------- /test_d2v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangz10/tensorflow-playground/HEAD/test_d2v.py -------------------------------------------------------------------------------- /test_w2v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangz10/tensorflow-playground/HEAD/test_w2v.py -------------------------------------------------------------------------------- /word2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangz10/tensorflow-playground/HEAD/word2vec.py -------------------------------------------------------------------------------- /word2vec_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangz10/tensorflow-playground/HEAD/word2vec_basic.py --------------------------------------------------------------------------------