├── .gitignore ├── .idea ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml └── vcs.xml ├── LICENSE ├── README.md ├── lda2vec ├── Lda2vec.py ├── __init__.py ├── dirichlet_likelihood.py ├── embedding_mixture.py ├── nlppipe.py ├── utils.py └── word_embedding.py ├── pyLDAvis_results.png ├── requirements.txt ├── setup.py └── tests └── twenty_newsgroups ├── data └── 20_newsgroups.txt ├── load_20newsgroups.py └── run_20newsgroups.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /lda2vec/Lda2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/lda2vec/Lda2vec.py -------------------------------------------------------------------------------- /lda2vec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/lda2vec/__init__.py -------------------------------------------------------------------------------- /lda2vec/dirichlet_likelihood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/lda2vec/dirichlet_likelihood.py -------------------------------------------------------------------------------- /lda2vec/embedding_mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/lda2vec/embedding_mixture.py -------------------------------------------------------------------------------- /lda2vec/nlppipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/lda2vec/nlppipe.py -------------------------------------------------------------------------------- /lda2vec/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/lda2vec/utils.py -------------------------------------------------------------------------------- /lda2vec/word_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/lda2vec/word_embedding.py -------------------------------------------------------------------------------- /pyLDAvis_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/pyLDAvis_results.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/setup.py -------------------------------------------------------------------------------- /tests/twenty_newsgroups/data/20_newsgroups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/tests/twenty_newsgroups/data/20_newsgroups.txt -------------------------------------------------------------------------------- /tests/twenty_newsgroups/load_20newsgroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/tests/twenty_newsgroups/load_20newsgroups.py -------------------------------------------------------------------------------- /tests/twenty_newsgroups/run_20newsgroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nateraw/Lda2vec-Tensorflow/HEAD/tests/twenty_newsgroups/run_20newsgroups.py --------------------------------------------------------------------------------