A Guide to Building Hybrid Recommendation Systems for Beginners

A hybrid recommendation system is a special type of recommendation system which can be considered as the combination of the content and collaborative filtering method.

Share

Join AIM in Whatsapp

Follow AIM

Recommendation systems are widely used in a variety of applications for recommending products or items to the user. There are two popular methods used for filtering the recommendations, content-based and collaborative filtering. These methods face the issue when there is not enough data to learn the relation between user and items. In such cases, the third type of approach is used to build the recommendation systems named as Hybrid Recommendation System. This approach overcomes the limitations of both content-based and collaborative filtering methods. In this article, we will discuss the hybrid recommendation systems in detail and we will learn how to build a hybrid recommendation system using a Python implementation named LightFM. The major points to be covered in the article are listed below.

Table of Contents

  1. Hybrid Recommendation System
  2. Types of Data for Generating Recommendation Systems
  3. Losses used by Recommendation Systems
    1. Bayesian Personalised Ranking(BPR)
    2. Weighted Approximate-Rank Pairwise (WARP)
    1. Fitting the Model with BPR Loss
    2. Fitting the Model with WARP Loss

    Hybrid Recommendation System

    A hybrid recommendation system is a special type of recommendation system which can be considered as the combination of the content and collaborative filtering method. Combining collaborative and content-based filtering together may help in overcoming the shortcoming we are facing at using them separately and also can be more effective in some cases. Hybrid recommender system approaches can be implemented in various ways like by using content and collaborative-based methods to generate predictions separately and then combining the prediction or we can just add the capabilities of collaborative-based methods to a content-based approach (and vice versa).

    There are several studies that compare the performance of the conventional approaches with the hybrid methods and say that by using the hybrid methods we can generate more accurate recommendations.

    Types of Data for Generating a Recommendation System

    In accordance with the approaches, we can divide the data into two types using which we can generate a recommendation system:-

    Here in this article, we are going to build a recommendation system on implicit feedback so here we will talk about the importance of implicit feedback. In the above section, we tried to define both explicit and implicit feedback. So let’s talk about a recommender that is based on explicit feedback and it is providing recommendations based on the rating for example we can say recommendation of books based on the rating by the user. Now the focus of the recommender is on the rating but it is not considering which book a user chooses to read in the first place and also if the ratings are not available that can lead the recommendation to a state where the absence of information can occur.

    Information such as which book has not been chosen by anyone or which book has been chosen by most of the people can be a good source of information for a recommendation system to recommend the best out of itself.

    It is very simple to understand that the ratings that are missing are more likely to be negative precisely because the user chooses which items to rate and the left gets a blank rating. Or we can say things which are not expected to be liked by us. We left them without giving the ratings.

    These observations led us to make a model which can work with implicit feedback. And there is a library called LightFM that can help us on making a recommendation system on Implicit feedback.

    Losses used by Recommendation Systems

    We can build recommendation systems in two ways using two different loss approaches:-

    Implementing a Hybrid Recommendation System

    Let us build a hybrid recommendation system using the python implementation named LightFM. In this implementation, we are going to see how we can estimate the above-given model (BPR and WARP). Before going for implementation we may require to install the library which we are required to use in the implementation

    Installing LightFM

    Using the following code we can install the library using the pip.

    !pip install lightfm

    Here for the implementation, I am using the Movielens data where the data consists of:

    Other information about the data is given in the below image:

    Fortunately, the data is available in the LightFM library for practice purposes. We can call it for further implementation.

    Importing libraries and dataset:

    import numpy as np from lightfm.datasets import fetch_movielens data = fetch_movielens()

    Checking the dictionaries and their size in the data:

    for key, value in data.items(): print(key, value.shape)

    Defining the train and test data for training and testing purposes:

    train = data['train'] test = data['test']

    Here the test and train consist of raw ratings where each row is a piece of user information and columns are item or movie information and the ratings between 1 to 5 are the entries.

    Fitting the Model with BPR Loss

    from lightfm import LightFM model = LightFM(learning_rate=0.05, loss='bpr') model.fit(train, epochs=10)

    Next, We are using two metrics of accuracy: k(precision) and ROC AUC. These ranking metrics help in checking the accuracy of recommendations. To compute these metrics libraries’ algorithm will build the list of recommendations for every user and cross-check the ranking for movies that are already known as positive movies. The k will tell us whether the predictions made by the model are lying within the first k results on the list or not. And the AUC score is a measure that tells the probability that any known positive is in a higher place on the list than the randomly selected negative example.

    from lightfm.evaluation import precision_at_k, auc_score train_precision = precision_at_k(model, train, k=10).mean() test_precision = precision_at_k(model, test, k=10, train_interactions=train).mean() train_auc = auc_score(model, train).mean() test_auc = auc_score(model, test, train_interactions=train).mean() print('Precision: train %.2f, test %.2f.' % (train_precision, test_precision)) print('AUC: train %.2f, test %.2f.' % (train_auc, test_auc))

    Fitting the Model with WARP Loss

    As we have discussed, the WARP loss procedure maximizes the rank of positive feedback so the precision of the model using WARP is expected to be higher than the BPR loss model. we can implement the WARP by just replacing the loss = “bpr” with loss = “warp”.

    model = LightFM(learning_rate=0.05, loss='warp') model.fit_partial(train, epochs=10)

    Checking for the precession and AUC:

    train_precision = precision_at_k(model, train, k=10).mean() test_precision = precision_at_k(model, test, k=10, train_interactions=train).mean() train_auc = auc_score(model, train).mean() test_auc = auc_score(model, test, train_interactions=train).mean() print('Precision: train %.2f, test %.2f.' % (train_precision, test_precision)) print('AUC: train %.2f, test %.2f.' % (train_auc, test_auc))

    Here we can see that the precision in the WARP loss model is higher than the BPR loss model and also there is some increment in the AUC score.

    Final Words

    In this article, we discussed what hybrid recommendation systems are and how they are useful. These systems overcome the limitations of other recommendation filtering approaches, content-based and collaborative filtering. We also discussed what types of data can be used to build the recommendation systems and what are the different loss functions used by these systems. The most important part of this article is that we understood how to build hybrid recommendation systems and how to evaluate their performance. Hope this article will be helpful to any beginner who wants to learn the implementation of hybrid recommendation systems.

    References

    📣 Want to advertise in AIM? Book here