[mlpack-svn] r17227 - mlpack/trunk/src/mlpack/methods/gmm

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Thu Oct 9 16:43:17 EDT 2014


Author: rcurtin
Date: Thu Oct  9 16:43:16 2014
New Revision: 17227

Log:
Refactor for different KMeans API.


Modified:
   mlpack/trunk/src/mlpack/methods/gmm/gmm_main.cpp

Modified: mlpack/trunk/src/mlpack/methods/gmm/gmm_main.cpp
==============================================================================
--- mlpack/trunk/src/mlpack/methods/gmm/gmm_main.cpp	(original)
+++ mlpack/trunk/src/mlpack/methods/gmm/gmm_main.cpp	Thu Oct  9 16:43:16 2014
@@ -120,7 +120,7 @@
     typedef KMeans<metric::SquaredEuclideanDistance, RefinedStart> KMeansType;
 
     // These are default parameters.
-    KMeansType k(1000, 1.0, metric::SquaredEuclideanDistance(),
+    KMeansType k(1000, metric::SquaredEuclideanDistance(),
         RefinedStart(samplings, percentage));
 
     // Depending on the value of 'forcePositive', we have to use different



More information about the mlpack-svn mailing list