[mlpack-svn] r16212 - mlpack/trunk/src/mlpack/methods/hmm

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Wed Feb 5 12:29:46 EST 2014


Author: birm
Date: Wed Feb  5 12:29:46 2014
New Revision: 16212

Log:
Fixed a Mistake in HMM's ToString


Modified:
   mlpack/trunk/src/mlpack/methods/hmm/hmm_impl.hpp

Modified: mlpack/trunk/src/mlpack/methods/hmm/hmm_impl.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/methods/hmm/hmm_impl.hpp	(original)
+++ mlpack/trunk/src/mlpack/methods/hmm/hmm_impl.hpp	Wed Feb  5 12:29:46 2014
@@ -494,8 +494,8 @@
 {
   std::ostringstream convert;
   convert << "HMM [" << this << "]" << std::endl;
-  convert << "  Dimensionality: " << Dimensionality <<std::endl;
-  convert << "  Tolerance: " << Tolerance <<std::endl;
+  convert << "  Dimensionality: " << dimensionality <<std::endl;
+  convert << "  Tolerance: " << tolerance <<std::endl;
   convert << "  Transition matrix: " << transition.n_rows << "x" ;
   convert << transition.n_cols << std::endl;
   return convert.str();



More information about the mlpack-svn mailing list