[mlpack-svn] r16258 - mlpack/trunk/src/mlpack/core/optimizers/sgd

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Mon Feb 10 09:12:35 EST 2014


Author: rcurtin
Date: Mon Feb 10 09:12:35 2014
New Revision: 16258

Log:
Minor changes to ToString().


Modified:
   mlpack/trunk/src/mlpack/core/optimizers/sgd/sgd_impl.hpp

Modified: mlpack/trunk/src/mlpack/core/optimizers/sgd/sgd_impl.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/core/optimizers/sgd/sgd_impl.hpp	(original)
+++ mlpack/trunk/src/mlpack/core/optimizers/sgd/sgd_impl.hpp	Mon Feb 10 09:12:35 2014
@@ -105,10 +105,10 @@
   convert << "SGD [" << this << "]" << std::endl;
   convert << "  Function:" << std::endl;
   convert << util::Indent(function.ToString(), 2);
-  convert << "  StepSize: " << stepSize << std::endl;
-  convert << "  Maximum Iterations: " << maxIterations << std::endl;
+  convert << "  Step size: " << stepSize << std::endl;
+  convert << "  Maximum iterations: " << maxIterations << std::endl;
   convert << "  Tolerance: " << tolerance << std::endl;
-  convert << "  Shuffle: " << (shuffle ? "true" : "false") << std::endl;
+  convert << "  Shuffle points: " << (shuffle ? "true" : "false") << std::endl;
   return convert.str();
 }
 



More information about the mlpack-svn mailing list