[mlpack-svn] r17076 - mlpack/trunk/src/mlpack/methods/cf

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Tue Aug 19 14:07:45 EDT 2014


Author: siddharth.950
Date: Tue Aug 19 14:07:44 2014
New Revision: 17076

Log:
Added help information in CF executable.

Modified:
   mlpack/trunk/src/mlpack/methods/cf/cf_main.cpp

Modified: mlpack/trunk/src/mlpack/methods/cf/cf_main.cpp
==============================================================================
--- mlpack/trunk/src/mlpack/methods/cf/cf_main.cpp	(original)
+++ mlpack/trunk/src/mlpack/methods/cf/cf_main.cpp	Tue Aug 19 14:07:44 2014
@@ -34,7 +34,12 @@
     "first column is the user, the second column is the item, and the third "
     "column is that user's rating of that item.  Both the users and items "
     "should be numeric indices, not names. The indices are assumed to start "
-    "from 0.");
+    "from 0."
+    "\n\n"
+    "The following optimization algorithms can be used with --algorithm (-a) "
+    "parameter: "
+    "\n"
+    "RegSVD -- Regularized SVD using a SGD optimizer ");
 
 // Parameters for program.
 PARAM_STRING_REQ("input_file", "Input dataset to perform CF on.", "i");



More information about the mlpack-svn mailing list