Created
July 10, 2014 17:48
-
-
Save cigrainger/1aa5ae1aa196f9d4ffd5 to your computer and use it in GitHub Desktop.
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
| #!/bin/bash | |
| for i in {1..250000} | |
| do | |
| nohup hadoop jar ./Mr.LDA/target/mrlda-0.9.0-SNAPSHOT-fatjar.jar \ | |
| cc.mrlda.VariationalInference \ | |
| -input abstracts/document -output abstracts-lda \ | |
| -term 100000 -topic $i -mapper 500 -reducer 276 >& lda.log & | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment