easyLDA is a library that easily build LDA Topic Models with just a list of docs (e.g. a list of twitter posts in CSV/TXT)
- If you have a collection of documents, and what to explore the relationship & topics of the docs, easyLDA is a very handy library to use. Simply run the commend and you'll get a trained LDA model with results visualized
Credit to:
https://radimrehurek.com/gensim/
http://pyldavis.readthedocs.io/en/latest/readme.html
$ pip install easyLDA
simple need a text file (.csv) with each row represents a document (a post, comment, short article etc.), with only one column which is the text
- in shell $ easyLDA
http://shichaoji.com/2016/02/04/easylda-live-example/