├── .gitignore ├── LICENSE ├── README.md ├── data ├── 163news.split.txt ├── 163news.theta ├── 163news.txt ├── dataset.txt └── voc.txt ├── document.py ├── example ├── java │ └── src │ │ ├── LdaGibbsSampler.java │ │ └── Main.java └── lda.py ├── ldaModel.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankle/LDA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankle/LDA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankle/LDA/HEAD/README.md -------------------------------------------------------------------------------- /data/163news.split.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankle/LDA/HEAD/data/163news.split.txt -------------------------------------------------------------------------------- /data/163news.theta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/163news.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankle/LDA/HEAD/data/163news.txt -------------------------------------------------------------------------------- /data/dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankle/LDA/HEAD/data/dataset.txt -------------------------------------------------------------------------------- /data/voc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankle/LDA/HEAD/data/voc.txt -------------------------------------------------------------------------------- /document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankle/LDA/HEAD/document.py -------------------------------------------------------------------------------- /example/java/src/LdaGibbsSampler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankle/LDA/HEAD/example/java/src/LdaGibbsSampler.java -------------------------------------------------------------------------------- /example/java/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankle/LDA/HEAD/example/java/src/Main.java -------------------------------------------------------------------------------- /example/lda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankle/LDA/HEAD/example/lda.py -------------------------------------------------------------------------------- /ldaModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankle/LDA/HEAD/ldaModel.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tankle/LDA/HEAD/test.py --------------------------------------------------------------------------------