From 72b8d863e656d22a2b4dd5660f2d9b9986e58876 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Mon, 4 Jun 2018 14:37:50 -0400 Subject: [PATCH] Fix wording and dangling apostrophe. --- src/mlpack/methods/decision_tree/decision_tree_main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mlpack/methods/decision_tree/decision_tree_main.cpp b/src/mlpack/methods/decision_tree/decision_tree_main.cpp index 258689fb6f..0e4be96c0c 100644 --- a/src/mlpack/methods/decision_tree/decision_tree_main.cpp +++ b/src/mlpack/methods/decision_tree/decision_tree_main.cpp @@ -25,7 +25,7 @@ PROGRAM_INFO("Decision tree", "numeric or categorical features, and associated labels for each point in " "the dataset, this program can train a decision tree on that data." "\n\n" - "The training file and associated labels are specified with the " + + "The training set and associated labels are specified with the " + PRINT_PARAM_STRING("training") + " and " + PRINT_PARAM_STRING("labels") + " parameters, respectively. The labels should be in the range [0, " "num_classes - 1]. Optionally, if " + @@ -35,7 +35,7 @@ PROGRAM_INFO("Decision tree", "When a model is trained, the " + PRINT_PARAM_STRING("output_model") + " " "output parameter may be used to save the trained model. A model may be " "loaded for predictions with the " + PRINT_PARAM_STRING("input_model") + - "' parameter. The " + PRINT_PARAM_STRING("input_model") + " parameter " + " parameter. The " + PRINT_PARAM_STRING("input_model") + " parameter " "may not be specified when the " + PRINT_PARAM_STRING("training") + " " "parameter is specified. The " + PRINT_PARAM_STRING("minimum_leaf_size") + " parameter specifies the minimum number of training points that must fall"