Last active
September 3, 2015 12:06
-
-
Save jineshpaloor/c93338334427a7da7848 to your computer and use it in GitHub Desktop.
steps to follow to run gensim lda in distributed systems
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # run name server | |
| python -m Pyro4.naming -n 0.0.0.0 & | |
| # run lda worker (2 times) | |
| python -m gensim.models.lda_worker > data/worker1.log 2>&1 & | |
| # run lda dispatcher | |
| python -m gensim.models.lda_dispatcher > data/dispatcher.log 2>&1 & | |
| # run the script (client) on any server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment