Here we collect the content of lectures for the Recommender Systems course.
We are going to define item and user vectors, their geometrical meaning, etc. We will define distance metrics, also by implementing some examples of those.
Finally, we will build the simplest recommendation model possible: the most popular recommendation.
In this lecture, we will implement a distance-based model. First, we put ourself in the non-personalised mode, after that we try to assign a ranking score to user-item preference in order to encode the personalised ranking.
The aim of this lecture is to built a model that exploits the collaborative filtering algorithm in order to predict the rating
The purpose here is to build a model that is based on the notorious
This lecture will play the role of an introduction to the big topic of Matrix Factorisation. Indeed, we are going to define the important quantities and to apply a first example of the matrix factorisation recommendation model, that is FunkSVD.
We will keep going on exploring matrix factorisation algorithms, presenting the famous ALS algorithm and facing the issue of coping with big data structures. We will introduce a new way of handle data, through spark dataframes.