Skip to content

Commit

Permalink
Merge pull request #188 from jonaschn/patch-2
Browse files Browse the repository at this point in the history
Fix misleading help text
  • Loading branch information
mimno authored May 21, 2021
2 parents c7cc309 + fe6838a commit 4b232a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cc/mallet/topics/tui/TopicTrainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public class TopicTrainer {
"The number of iterations to run before first estimating dirichlet hyperparameters.", null);

static CommandOption.Boolean useSymmetricAlpha = new CommandOption.Boolean(TopicTrainer.class, "use-symmetric-alpha", "true|false", false, false,
"Only optimize the concentration parameter of the prior over document-topic distributions. This may reduce the number of very small, poorly estimated topics, but may disperse common words over several topics.", null);
"Optimize the concentration parameter (SumAlpha) of the prior over document-topic distributions while keeping it symmetric. This may reduce the number of very small, poorly estimated topics, but may disperse common words over several topics.", null);

static CommandOption.Double alpha = new CommandOption.Double(TopicTrainer.class, "alpha", "DECIMAL", true, 5.0,
"SumAlpha parameter: sum over topics of smoothing over doc-topic distributions. alpha_k = [this value] / [num topics]",null);
Expand Down

0 comments on commit 4b232a8

Please sign in to comment.