From f3c84b49ea3ea531f7fd1f8079df3d5c09c73c2f Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 21 Dec 2015 15:31:57 -0500 Subject: [PATCH] Update documentation. --- src/mlpack/methods/cf/cf.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlpack/methods/cf/cf.hpp b/src/mlpack/methods/cf/cf.hpp index 93e40af5e3..29d851c000 100644 --- a/src/mlpack/methods/cf/cf.hpp +++ b/src/mlpack/methods/cf/cf.hpp @@ -52,7 +52,7 @@ struct FactorizerTraits * extern arma::Col users; // users seeking recommendations * arma::Mat recommendations; // Recommendations * - * CF<> cf(data); // Default options. + * CF cf(data); // Default options. * * // Generate 10 recommendations for all users. * cf.GetRecommendations(10, recommendations);