September 2016
Beginner to intermediate
346 pages
6h 35m
English
The dataset is maintained by the "GroupLens research" and is available for free at http://grouplens.org/datasets/movielens/.
We will be working on the dataset of 20 million ratings (ml-20m.zip). This contains:
We will work on an ALS recommender, which is a matrix factorization algorithm that uses Alternating Least Squares with Weighted-Lamda-Regularization (ALS-WR).
Let's consider that we have a matrix with users, u, and items, i:
Matrix, M (ui) = { r (if item i is rated by the user, u) 0 (if item i is not rated by user, u) }
Here, r represents the ratings submitted.
Consider that we have m number of users and n number of movies. ...
Read now
Unlock full access