[mlpack-svn] r15894 - mlpack/trunk/src/mlpack/tests

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Tue Oct 1 15:50:02 EDT 2013


Author: rcurtin
Date: Tue Oct  1 15:50:02 2013
New Revision: 15894

Log:
Fix comment (thanks Marcus).


Modified:
   mlpack/trunk/src/mlpack/tests/linear_regression_test.cpp

Modified: mlpack/trunk/src/mlpack/tests/linear_regression_test.cpp
==============================================================================
--- mlpack/trunk/src/mlpack/tests/linear_regression_test.cpp	(original)
+++ mlpack/trunk/src/mlpack/tests/linear_regression_test.cpp	Tue Oct  1 15:50:02 2013
@@ -20,7 +20,7 @@
  */
 BOOST_AUTO_TEST_CASE(LinearRegressionTestCase)
 {
-  // Predictors and points are 100x3 matrices.
+  // Predictors and points are 10x3 matrices.
   arma::mat predictors(3, 10);
   arma::mat points(3, 10);
 
@@ -130,7 +130,7 @@
  */
 BOOST_AUTO_TEST_CASE(RidgeRegressionTestCase)
 {
-  // Predictors and points are 100x3 matrices.
+  // Predictors and points are 10x3 matrices.
   arma::mat predictors(3, 10);
   arma::mat points(3, 10);
 



More information about the mlpack-svn mailing list