https://github.com/da03/gsdmm
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/da03/gsdmm
- Owner: da03
- Created: 2016-05-27T02:20:55.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-22T06:02:41.000Z (almost 10 years ago)
- Last Synced: 2025-03-17T19:11:39.678Z (over 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 5
- Watchers: 3
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GSDMM (short text topic modeling)
## A python implementation of http://dbgroup.cs.tsinghua.edu.cn/wangjy/papers/KDD14-GSDMM.pdf)
## Usage: `python test_lda.py`
Note: In `test_lda.py` package `lda` is required (`pip install lda`). However, it is unnecessary to install it to use `GSDMM.py`.
Note: The `X` matrix can be either a count matrix, where `X[document, word]` denotes the word count, or a binary matrix, where `X[document, word]=1/0`, indicating whether a word occurs or not.