[mlpack-svn] r11287 - mlpack/trunk/src/mlpack/methods/linear_regression

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Wed Jan 25 16:47:47 EST 2012


Author: jcline3
Date: 2012-01-25 16:47:47 -0500 (Wed, 25 Jan 2012)
New Revision: 11287

Modified:
   mlpack/trunk/src/mlpack/methods/linear_regression/linear_regression_main.cpp
Log:
The parameter names were... wrong.



Modified: mlpack/trunk/src/mlpack/methods/linear_regression/linear_regression_main.cpp
===================================================================
--- mlpack/trunk/src/mlpack/methods/linear_regression/linear_regression_main.cpp	2012-01-25 19:41:03 UTC (rev 11286)
+++ mlpack/trunk/src/mlpack/methods/linear_regression/linear_regression_main.cpp	2012-01-25 21:47:47 UTC (rev 11287)
@@ -46,8 +46,8 @@
   const string trainName = CLI::GetParam<string>("input_file");
   const string testName = CLI::GetParam<string>("test_file");
   const string responseName = CLI::GetParam<string>("input_responses");
-  const string outputFile = CLI::GetParam<string>("outputFile");
-  const string outputPredictions = CLI::GetParam<string>("outputPredictions");
+  const string outputFile = CLI::GetParam<string>("output_file");
+  const string outputPredictions = CLI::GetParam<string>("output_predictions");
 
   mat regressors;
   mat responses;




More information about the mlpack-svn mailing list