[mlpack-svn] r15898 - 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:07:30 EDT 2013


Author: rcurtin
Date: Tue Oct  1 16:07:30 2013
New Revision: 15898

Log:
Remove options for output files that weren't being used, and comment out options
that aren't implemented yet.


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:07:30 2013
@@ -28,15 +28,12 @@
     "be generated (if unspecified, then recommendations are generated for all "
     "users).", "q", "");
 
-PARAM_STRING("output_file","Recommendations.", "o", "recommendations.csv");
-PARAM_STRING("algorithm", "Algorithm used for cf (als/svd).", "a","als");
-PARAM_STRING("ratings_file", "File to save ratings.", "R","ratings.csv");
-PARAM_STRING("user_file", "File to save the calculated User matrix to.",
-             "U","user.csv");
-PARAM_STRING("item_file", "File to save the calculated Item matrix to.",
-             "I","item.csv");
-PARAM_STRING("nearest_neighbour_algorithm", "Similarity Measure to be used "
-             "for generating recommendations", "s","knn");
+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");
 
 PARAM_INT("number_of_Recommendations", "Number of Recommendations for each "
           "user in query", "r",5);



More information about the mlpack-svn mailing list