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

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Tue Oct 1 16:08:29 EDT 2013


Author: rcurtin
Date: Tue Oct  1 16:08:28 2013
New Revision: 15899

Log:
Better comments for unimplemented functionality.


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 Oct  1 16:08:28 2013
@@ -31,9 +31,11 @@
 PARAM_STRING("output_file","File to save output recommendations to.", "o",
     "recommendations.csv");
 
-//PARAM_STRING("algorithm", "Algorithm used for cf (als/svd).", "a","als");
-//PARAM_STRING("nearest_neighbour_algorithm", "Similarity Measure to be used "
-//             "for generating recommendations", "s","knn");
+// These features are not yet available in the CF code.
+//PARAM_STRING("algorithm", "Algorithm used for CF ('als' or 'svd').", "a",
+//    "als");
+//PARAM_STRING("nearest_neighbor_algorithm", "Similarity search procedure to "
+//    "be used for generating recommendations.", "s", "knn");
 
 PARAM_INT("number_of_Recommendations", "Number of Recommendations for each "
           "user in query", "r",5);



More information about the mlpack-svn mailing list