Learning the Latent Factors (collaborative filtering)
What does the term latent factors refer to ? Latent factors are those factors which are important in order to make recommendation predictions, but these factors are not directly given to the model, they are learned during training. That's why they are called latent.
First step for is to randomly initialize the parameters. These parameters would be the set of latent factors for each user and movie. The number of latent factors can be explicitly chosen.
Second step is to make predictions using our latent factors.
Third step is to calculate loss.
Then the optimization starts in order to minimize the loss.
0
1
Tags
Data Science
Related
Load Data
Crosstab Representation
Learning the Latent Factors (collaborative filtering)
Latent Factors with Crosstab
Code for Collaborative Filtering From Scratch
MovieLens Data for Collaborative Filtering
Reference for Deep Learning for Coders with Fastai and PyTorch: AI Applications Without a PhD 1st Edition
Learning the Latent Factors (collaborative filtering)
What is the use of bias in Collaborative Filtering Models ?
Bootstrapping Problem in Collaborative Filtering