[mlpack-svn] r15527 - mlpack/trunk/src/mlpack/methods/neighbor_search

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Mon Jul 22 12:47:39 EDT 2013


Author: rcurtin
Date: Mon Jul 22 12:47:39 2013
New Revision: 15527

Log:
Marcus, finder of errors, has found yet another one.


Modified:
   mlpack/trunk/src/mlpack/methods/neighbor_search/allknn_main.cpp

Modified: mlpack/trunk/src/mlpack/methods/neighbor_search/allknn_main.cpp
==============================================================================
--- mlpack/trunk/src/mlpack/methods/neighbor_search/allknn_main.cpp	(original)
+++ mlpack/trunk/src/mlpack/methods/neighbor_search/allknn_main.cpp	Mon Jul 22 12:47:39 2013
@@ -47,7 +47,7 @@
 PARAM_STRING_REQ("distances_file", "File to output distances into.", "d");
 PARAM_STRING_REQ("neighbors_file", "File to output neighbors into.", "n");
 
-PARAM_INT_REQ("k", "Number of furthest neighbors to find.", "k");
+PARAM_INT_REQ("k", "Number of nearest neighbors to find.", "k");
 
 PARAM_STRING("query_file", "File containing query points (optional).", "q", "");
 



More information about the mlpack-svn mailing list