Skip to content

Commit

Permalink
better explanatory message for split fractions
Browse files Browse the repository at this point in the history
  • Loading branch information
mimno committed Aug 31, 2015
1 parent b0899b3 commit 7cdd43d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cc/mallet/classify/tui/Vectors2Vectors.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ public class Vectors2Vectors {
"Write the validation set instance list to this file; Using - indicates stdout.", null);

static CommandOption.Double trainingProportion = new CommandOption.Double(Vectors2Vectors.class, "training-portion", "DECIMAL", true, 1.0,
"The fraction of the instances that should be used for training.", null);
"The fraction (0.0 - 1.0) of the instances that should be used for training.", null);

static CommandOption.Double validationProportion = new CommandOption.Double(Vectors2Vectors.class, "validation-portion", "DECIMAL", true, 0.0,
"The fraction of the instances that should be used for validation.", null);
"The fraction (0.0 - 1.0) of the instances that should be used for validation.", null);

static CommandOption.Integer randomSeed = new CommandOption.Integer(Vectors2Vectors.class, "random-seed", "INTEGER", true, 0,
"The random seed for randomly selecting a proportion of the instance list for training", null);
Expand Down

0 comments on commit 7cdd43d

Please sign in to comment.