A PureScript, browser-based implementation of latent Dirichlet allocation (LDA) topic modeling. Able to take in two or more documents and soft cluster them by up to four topics.
Try it at lettier.com/lda-topic-modeling. Read more about LDA.
# Install Git.
git clone [email protected]:lettier/lda-topic-modeling.git
cd lda-topic-modeling
# Install nvm and npm.
nvm use
npm install -g bower
npm install
bower install
npm run build
cd build/
nohup python -m http.server &> /dev/null &
python -mwebbrowser http://localhost:8000
(C) 2018 David Lettier
lettier.com