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

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Wed Apr 10 15:34:43 EDT 2013


Author: rcurtin
Date: 2013-04-10 15:34:42 -0400 (Wed, 10 Apr 2013)
New Revision: 14886

Modified:
   mlpack/trunk/src/mlpack/methods/gmm/gmm_impl.hpp
Log:
This should be informational output which is present even when debugging symbols
aren't.


Modified: mlpack/trunk/src/mlpack/methods/gmm/gmm_impl.hpp
===================================================================
--- mlpack/trunk/src/mlpack/methods/gmm/gmm_impl.hpp	2013-04-10 03:19:41 UTC (rev 14885)
+++ mlpack/trunk/src/mlpack/methods/gmm/gmm_impl.hpp	2013-04-10 19:34:42 UTC (rev 14886)
@@ -211,7 +211,7 @@
 
     bestLikelihood = LogLikelihood(observations, means, covariances, weights);
 
-    Log::Debug << "GMM::Estimate(): Log-likelihood of trial 0 is "
+    Log::Info << "GMM::Estimate(): Log-likelihood of trial 0 is "
         << bestLikelihood << "." << std::endl;
 
     // Now the temporary model.
@@ -228,7 +228,7 @@
       double newLikelihood = LogLikelihood(observations, meansTrial,
           covariancesTrial, weightsTrial);
 
-      Log::Debug << "GMM::Estimate(): Log-likelihood of trial " << trial
+      Log::Info << "GMM::Estimate(): Log-likelihood of trial " << trial
           << " is " << newLikelihood << "." << std::endl;
 
       if (newLikelihood > bestLikelihood)




More information about the mlpack-svn mailing list