[mlpack-svn] r15759 - mlpack/trunk/src/mlpack/methods/kmeans

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Wed Sep 11 14:54:05 EDT 2013


Author: marcus
Date: Wed Sep 11 14:54:05 2013
New Revision: 15759

Log:
Fix ambiguous match: option -p matches --in_place and --percentage.

Modified:
   mlpack/trunk/src/mlpack/methods/kmeans/kmeans_main.cpp

Modified: mlpack/trunk/src/mlpack/methods/kmeans/kmeans_main.cpp
==============================================================================
--- mlpack/trunk/src/mlpack/methods/kmeans/kmeans_main.cpp	(original)
+++ mlpack/trunk/src/mlpack/methods/kmeans/kmeans_main.cpp	Wed Sep 11 14:54:05 2013
@@ -37,7 +37,7 @@
 // Output options.
 PARAM_FLAG("in_place", "If specified, a column of the learned cluster "
     "assignments will be added to the input dataset file.  In this case, "
-    "--outputFile is not necessary.", "p");
+    "--outputFile is not necessary.", "P");
 PARAM_STRING("output_file", "File to write output labels or labeled data to.",
     "o", "output.csv");
 PARAM_STRING("centroid_file", "If specified, the centroids of each cluster will"



More information about the mlpack-svn mailing list