[mlpack-git] master: fix typo (6022b4d)

gitdub at mlpack.org gitdub at mlpack.org
Mon Sep 26 15:35:18 EDT 2016


Repository : https://github.com/mlpack/mlpack
On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/635238ba763335f6708b5560ae6606b008fdd609...066c67040a600a4600eebc6b5e0d63dc090acb8d

>---------------------------------------------------------------

commit 6022b4d3ced87c0d68d1d0bbdbe94ccdd504a3c5
Author: Keon Kim <kwk236 at gmail.com>
Date:   Wed Sep 7 23:48:53 2016 -0400

    fix typo


>---------------------------------------------------------------

6022b4d3ced87c0d68d1d0bbdbe94ccdd504a3c5
 src/mlpack/methods/preprocess/preprocess_imputer_main.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mlpack/methods/preprocess/preprocess_imputer_main.cpp b/src/mlpack/methods/preprocess/preprocess_imputer_main.cpp
index 6b9606c..c18f31f 100644
--- a/src/mlpack/methods/preprocess/preprocess_imputer_main.cpp
+++ b/src/mlpack/methods/preprocess/preprocess_imputer_main.cpp
@@ -33,8 +33,8 @@ PARAM_STRING_IN_REQ("input_file", "File containing data,", "i");
 PARAM_STRING_OUT("output_file", "File to save output", "o");
 PARAM_STRING_IN("missing_value", "User defined missing value", "m", "");
 PARAM_STRING_IN("strategy", "imputation strategy to be applied. Strategies "
-    "should be one of 'custom', 'mean', 'median', and 'listwise_deletion'.", "s"
-    , "");
+    "should be one of 'custom', 'mean', 'median', and 'listwise_deletion'.",
+    "s", "");
 PARAM_DOUBLE_IN("custom_value", "user_defined custom value", "c", 0.0);
 PARAM_INT_IN("dimension", "the dimension to apply imputation", "d", 0);
 




More information about the mlpack-git mailing list