An implementation of paper Polylingual Topic Models
- This is a cython implementation of poly-lingual lda. Here, we refer to lda project.
- Fit, transform, fit_transform functions are implemented followed sklearn code style.
- We support standard lda when only one kind corpus is input.
- Input data should be a BOW matrix.
- If you want to see some output, you should instantiate a log object.
- python setup.py build
- python setup.py install
- Instantiate a log object.
- Make BOW matrixes of different lingual corpus.
- Throw BOW matrixes into the model and train.
- done.