14 #ifndef MLPACK_METHODS_CF_DECOMPOSITION_POLICIES_SVD_COMPLETE_METHOD_HPP 15 #define MLPACK_METHODS_CF_DECOMPOSITION_POLICIES_SVD_COMPLETE_METHOD_HPP 59 template<
typename MatType>
61 const arma::sp_mat& cleanedData,
63 const size_t maxIterations,
64 const double minResidue,
76 svdci.Apply(cleanedData, rank, w, h);
86 svdci.
Apply(cleanedData, rank, w, h);
96 double GetRating(
const size_t user,
const size_t item)
const 98 double rating = arma::as_scalar(w.row(item) * h.col(user));
110 rating = w * h.col(user);
125 template<
typename NeighborSearchPolicy>
127 const size_t numUsersForSimilarity,
128 arma::Mat<size_t>& neighborhood,
129 arma::mat& similarities)
const 138 arma::mat l = arma::chol(w.t() * w);
139 arma::mat stretchedH = l * h;
142 arma::mat query(stretchedH.n_rows, users.n_elem);
144 for (
size_t i = 0; i < users.n_elem; ++i)
145 query.col(i) = stretchedH.col(users(i));
147 NeighborSearchPolicy neighborSearch(stretchedH);
148 neighborSearch.Search(
149 query, numUsersForSimilarity, neighborhood, similarities);
153 const arma::mat&
W()
const {
return w; }
155 const arma::mat&
H()
const {
return h; }
160 template<
typename Archive>
This class implements AMF (alternating matrix factorization) on the given matrix V.
This initialization rule for AMF simply fills the W and H matrices with uniform random noise in [0...
TODO : Merge this template specialized function for sparse matrix using common row_col_iterator.
Linear algebra utility functions, generally performed on matrices or vectors.
const arma::mat & W() const
Get the Item Matrix.
The core includes that mlpack expects; standard C++ includes and Armadillo.
void GetNeighborhood(const arma::Col< size_t > &users, const size_t numUsersForSimilarity, arma::Mat< size_t > &neighborhood, arma::mat &similarities) const
Get the neighborhood and corresponding similarities for a set of users.
This class implements a simple residue-based termination policy.
const arma::mat & H() const
Get the User Matrix.
double GetRating(const size_t user, const size_t item) const
Return predicted rating given user ID and item ID.
void serialize(Archive &ar, const uint32_t)
Serialization.
Implementation of the SVD complete incremental policy to act as a wrapper when accessing SVD complete...
double Apply(const MatType &V, const size_t r, arma::mat &W, arma::mat &H)
Apply Alternating Matrix Factorization to the provided matrix.
void GetRatingOfUser(const size_t user, arma::vec &rating) const
Get predicted ratings for a user.
This termination policy only terminates when the maximum number of iterations has been reached...
void Apply(const MatType &, const arma::sp_mat &cleanedData, const size_t rank, const size_t maxIterations, const double minResidue, const bool mit)
Apply Collaborative Filtering to the provided data set using the SVD complete incremental policy...