SlideShare a Scribd company logo
1 of 16
Download to read offline
AIM3 – Scalable Data Analysis and Data
                     Mining



             11 – Latent factor models for Collaborative Filtering
              Sebastian Schelter, Christoph Boden, Volker Markl




         Fachgebiet Datenbanksysteme und Informationsmanagement
                        Technische Universität Berlin

20.06.2012
                         http://www.dima.tu-berlin.de/
                                  DIMA – TU Berlin                   1
Recap: Item-Based Collaborative Filtering


Itembased Collaborative Filtering


    • compute pairwise similarities of the columns of
      the rating matrix using some similarity measure
    • store top 20 to 50 most similar items per item
      in the item-similarity matrix
    • prediction: use a weighted sum over all items
      similar to the unknown item that have been
      rated by the current user


              p ui =
                          j S ( i , u )
                                            s ij ruj

                            j S ( i , u )
                                              s 
                                                ij



 20.06.2012                  DIMA – TU Berlin          2
Drawbacks of similarity-based neighborhood
       methods


   • the assumption that a rating is defined by all the
     user's ratings for commonly co-rated items is
     hard to justify in general

   • lack of bias correction

   • every co-rated item is looked at in isolation,
     say a movie was similar to „Lord of the Rings“, do
     we want each part to of the trilogy to contribute as
     a single similar item?

   • best choice of similarity measure is based on
     experimentation not on mathematical reasons

20.06.2012              DIMA – TU Berlin            3
Latent factor models


■ Idea

    • ratings are deeply influenced by a set of factors that are
      very specific to the domain (e.g. amount of action in movies,
      complexity of characters)

    • these factors are in general not obvious, we might be able to
      think of some of them but it's hard to estimate their impact on
      the ratings

    • the goal is to infer those so called latent factors from the
      rating data by using mathematical techniques




 20.06.2012                   DIMA – TU Berlin                  4
Latent factor models

■ Approach

    • users and items are characterized by latent                                n
                                                                                     f
      factors, each user and item is mapped onto     ui ,m       j
                                                                      R
      a latent feature space

    • each rating is approximated by the dot                             T
                                                    rij  m j u i
      product of the user feature vector
      and the item feature vector

    • prediction of unknown ratings also uses
      this dot product

    • squared error as a measure of loss            r   ij
                                                                     T
                                                               m j ui          2




 20.06.2012                  DIMA – TU Berlin                            5
Latent factor models


■ Approach

    • decomposition of the rating matrix into the product of a user
      feature and an item feature matrix
    • row in U: vector of a user's affinity to the features
    • row in M: vector of an item's relation to the features

    • closely related to Singular Value Decomposition which
      produces an optimal low-rank optimization of a matrix



                                                MT
              R          ≈           U




 20.06.2012                  DIMA – TU Berlin              6
Latent factor models


■ Properties of the decomposition
   • automatically ranks features by their „impact“ on the ratings
   • features might not necessarily be intuitively understandable




  20.06.2012                 DIMA – TU Berlin                 7
Latent factor models

■ Problematic situation with explicit feedback data

    • the rating matrix is not only sparse, but partially defined,
      missing entries cannot be interpreted as 0 they are just
      unknown
    • standard decomposition algorithms like Lanczos method for
      SVD are not applicable

Solution

    • decomposition has to be done using the known ratings only
    • find the set of user and item feature vectors that minimizes the
      squared error to the known ratings



                                   r            m j ui 
                                                     T        2
                     min   U, M           i, j




 20.06.2012                       DIMA – TU Berlin                8
Latent factor models


■ quality of the decomposition is not measured with respect to
  the reconstruction error to the original data, but with
  respect to the generalization to unseen data
■ regularization necessary to avoid overfitting

■ model has hyperparameters (regularization, learning rate)
  that need to be chosen

■ process: split data into training, test and validation set
    □   train model using the training set
    □   choose hyperparameters according to performance on the test set
    □   evaluate generalization on the validation set
    □   ensure that each datapoint is used in each set once
        (cross-validation)



 20.06.2012                      DIMA – TU Berlin                    9
Stochastic Gradient Descent


   • add a regularizarion term

       min       U, M    r   i, j
                                          T
                                       m j ui   
                                                     2
                                                            
                                                         + λ ui
                                                                        2
                                                                            + m   j
                                                                                      2
                                                                                          
   • loop through all ratings in the training set, compute
     associated prediction error
                               T
       e ui = rij  m j u i

   • modify parameters in the opposite direction of the gradient

        u i  u i + γ e u, i m                      j
                                                          λu       i
                                                                        
        m    j
                   m j + γ e u, i u i  λm                    j
                                                                    
   • problem: approach is inherently sequential (although recent
     research might have unveiled a parallelization technique)



20.06.2012                                                      DIMA – TU Berlin              10
Alternating Least Squares with
        Weighted λ-Regularization
■ Model

    • feature matrices are modeled directly by using only
      the observed ratings
    • add a regularization term to avoid overfitting
    • minimize regularized error of:

          f U, M   =    r   ij
                                      m j ui  + λ
                                         T    2
                                                       n   u
                                                                 i
                                                                     ui
                                                                          2
                                                                              +      nm
                                                                                           j
                                                                                               m   j
                                                                                                       2
                                                                                                           
Solving technique

    • fixing one of the unknown variable to make this a simple
      quadratic equation
    • rotate between fixing u and m until convergence
      („Alternating Least Squares“)



 20.06.2012                                       DIMA – TU Berlin                                             11
ALS-WR is scalable


■ Which properties make this approach scalable?

    • all the features in one iteration can be computed
      independently of each other
    • only a small portion of the data necessary to compute
      a feature vector

Parallelization with Map/Reduce

    • Computing user feature vectors: the mappers need to send
      each user's rating vector and the feature vectors of his/her
      rated items to the same reducer

    • Computing item feature vectors: the mappers need to send
      each item's rating vector and the feature vectors of users who
      rated it to the same reducer

 20.06.2012                  DIMA – TU Berlin                  12
Incorporating biases


■ Problem: explicit feedback data is highly biased
    □ some users tend to rate more extreme than others
    □ some items tend to get higher ratings than others


■ Solution: explicitly model biases
    □ the bias of a rating is model as a combination of the items average
      rating, the item bias and the user bias

         b ij    b i  b j


    □ the rating bias can be incorporated into the prediction

         rij    b i  b j  m j u i
                                  T
         ˆ




 20.06.2012                           DIMA – TU Berlin                13
Latent factor models


■ implicit feedback data is very different from explicit data!

    □ e.g. use the number of clicks on a product page of an online shop

    □   the whole matrix is defined!
    □   no negative feedback
    □   interactions that did not happen produce zero values
    □   however we should have only little confidence in these (maybe the user
        never had the chance to interact with these items)

    □ using standard decomposition techniques like SVD would give us a
      decomposition that is biased towards the zero entries, again not
      applicable




 20.06.2012                      DIMA – TU Berlin                     14
Latent factor models

■ Solution for working with implicit data:
  weighted matrix factorization

                                                                                           1        rij  0
■ create a binary preference matrix P                                             p ij    
                                                                                             0       rij  0
                                                                                           

■ each entry in this matrix can be weighted
  by a confidence function
    □ zero values should get low confidence                                       c ( i , j )  1   rij

    □ values that are based on a lot of interactions
      should get high confidence


■ confidence is incorporated into the model
    □ the factorization will ‚prefer‘ more confident values


  f U, M     =                        T
                     c ( i , j ) p ij  m j u i   
                                                      2
                                                          + λ      ui
                                                                          2
                                                                              +            m    j
                                                                                                      2
                                                                                                          
 20.06.2012                           DIMA – TU Berlin                                               15
Sources


   • Sarwar et al.: „Item-Based Collaborative Filtering
     Recommendation Algorithms“, 2001
   • Koren et al.: „Matrix Factorization Techniques for Recommender
     Systems“, 2009
   • Funk: „Netflix Update: Try This at Home“,
     http://sifter.org/~simon/journal/20061211.html, 2006
   • Zhou et al.: „Large-scale Parallel Collaborative Filtering for the
     Netflix Prize“, 2008
   • Hu et al.: „Collaborative Filtering for Implicit Feedback
     Datasets“, 2008




20.06.2012                   DIMA – TU Berlin                   16

More Related Content

What's hot

Recommender Engines
Recommender EnginesRecommender Engines
Recommender Engines
Thomas Hess
 
Amazon Item-to-Item Recommendations
Amazon Item-to-Item RecommendationsAmazon Item-to-Item Recommendations
Amazon Item-to-Item Recommendations
Roger Chen
 
Recommender Systems! @ASAI 2011
Recommender Systems! @ASAI 2011Recommender Systems! @ASAI 2011
Recommender Systems! @ASAI 2011
Ernesto Mislej
 
Recommendation engines
Recommendation enginesRecommendation engines
Recommendation engines
Georgian Micsa
 
Recommender system introduction
Recommender system   introductionRecommender system   introduction
Recommender system introduction
Liang Xiang
 
Model based collaborative filtering
Model based collaborative filteringModel based collaborative filtering
Model based collaborative filtering
Bui Loc
 

What's hot (20)

Recommender Engines
Recommender EnginesRecommender Engines
Recommender Engines
 
Recommender Systems
Recommender SystemsRecommender Systems
Recommender Systems
 
Recommender system
Recommender systemRecommender system
Recommender system
 
Neural collaborative filtering-발표
Neural collaborative filtering-발표Neural collaborative filtering-발표
Neural collaborative filtering-발표
 
Recommender Systems: Advances in Collaborative Filtering
Recommender Systems: Advances in Collaborative FilteringRecommender Systems: Advances in Collaborative Filtering
Recommender Systems: Advances in Collaborative Filtering
 
Recommender systems for E-commerce
Recommender systems for E-commerceRecommender systems for E-commerce
Recommender systems for E-commerce
 
Recommendation Systems
Recommendation SystemsRecommendation Systems
Recommendation Systems
 
Amazon Item-to-Item Recommendations
Amazon Item-to-Item RecommendationsAmazon Item-to-Item Recommendations
Amazon Item-to-Item Recommendations
 
Recommender Systems! @ASAI 2011
Recommender Systems! @ASAI 2011Recommender Systems! @ASAI 2011
Recommender Systems! @ASAI 2011
 
Recommendation system for ecommerce
Recommendation system for ecommerceRecommendation system for ecommerce
Recommendation system for ecommerce
 
Recommendation engines
Recommendation enginesRecommendation engines
Recommendation engines
 
Movie Recommendation engine
Movie Recommendation engineMovie Recommendation engine
Movie Recommendation engine
 
Recommender Systems
Recommender SystemsRecommender Systems
Recommender Systems
 
Tutorial Mahout - Recommendation
Tutorial Mahout - RecommendationTutorial Mahout - Recommendation
Tutorial Mahout - Recommendation
 
Recommendation Engine Project Presentation
Recommendation Engine Project PresentationRecommendation Engine Project Presentation
Recommendation Engine Project Presentation
 
Recommender system introduction
Recommender system   introductionRecommender system   introduction
Recommender system introduction
 
Model based collaborative filtering
Model based collaborative filteringModel based collaborative filtering
Model based collaborative filtering
 
Recommendation systems
Recommendation systemsRecommendation systems
Recommendation systems
 
HT2014 Tutorial: Evaluating Recommender Systems - Ensuring Replicability of E...
HT2014 Tutorial: Evaluating Recommender Systems - Ensuring Replicability of E...HT2014 Tutorial: Evaluating Recommender Systems - Ensuring Replicability of E...
HT2014 Tutorial: Evaluating Recommender Systems - Ensuring Replicability of E...
 
Tutorial on Sequence Aware Recommender Systems - ACM RecSys 2018
Tutorial on Sequence Aware Recommender Systems - ACM RecSys 2018Tutorial on Sequence Aware Recommender Systems - ACM RecSys 2018
Tutorial on Sequence Aware Recommender Systems - ACM RecSys 2018
 

Viewers also liked

どの言語でつぶやかれたのか、機械が知る方法 #WebDBf2013
どの言語でつぶやかれたのか、機械が知る方法 #WebDBf2013どの言語でつぶやかれたのか、機械が知る方法 #WebDBf2013
どの言語でつぶやかれたのか、機械が知る方法 #WebDBf2013
Shuyo Nakatani
 
Ensembles of example dependent cost-sensitive decision trees slides
Ensembles of example dependent cost-sensitive decision trees slidesEnsembles of example dependent cost-sensitive decision trees slides
Ensembles of example dependent cost-sensitive decision trees slides
Alejandro Correa Bahnsen, PhD
 
機会学習ハッカソン:ランダムフォレスト
機会学習ハッカソン:ランダムフォレスト機会学習ハッカソン:ランダムフォレスト
機会学習ハッカソン:ランダムフォレスト
Teppei Baba
 

Viewers also liked (11)

Simple Matrix Factorization for Recommendation in Mahout
Simple Matrix Factorization for Recommendation in MahoutSimple Matrix Factorization for Recommendation in Mahout
Simple Matrix Factorization for Recommendation in Mahout
 
国際化時代の40カ国語言語判定
国際化時代の40カ国語言語判定国際化時代の40カ国語言語判定
国際化時代の40カ国語言語判定
 
どの言語でつぶやかれたのか、機械が知る方法 #WebDBf2013
どの言語でつぶやかれたのか、機械が知る方法 #WebDBf2013どの言語でつぶやかれたのか、機械が知る方法 #WebDBf2013
どの言語でつぶやかれたのか、機械が知る方法 #WebDBf2013
 
RecSys 2015: Large-scale real-time product recommendation at Criteo
RecSys 2015: Large-scale real-time product recommendation at CriteoRecSys 2015: Large-scale real-time product recommendation at Criteo
RecSys 2015: Large-scale real-time product recommendation at Criteo
 
coordinate descent 法について
coordinate descent 法についてcoordinate descent 法について
coordinate descent 法について
 
情報推薦システム入門:講義スライド
情報推薦システム入門:講義スライド情報推薦システム入門:講義スライド
情報推薦システム入門:講義スライド
 
Deep forest
Deep forestDeep forest
Deep forest
 
JP Chaosmap 2015-2016
JP Chaosmap 2015-2016JP Chaosmap 2015-2016
JP Chaosmap 2015-2016
 
Beginners Guide to Non-Negative Matrix Factorization
Beginners Guide to Non-Negative Matrix FactorizationBeginners Guide to Non-Negative Matrix Factorization
Beginners Guide to Non-Negative Matrix Factorization
 
Ensembles of example dependent cost-sensitive decision trees slides
Ensembles of example dependent cost-sensitive decision trees slidesEnsembles of example dependent cost-sensitive decision trees slides
Ensembles of example dependent cost-sensitive decision trees slides
 
機会学習ハッカソン:ランダムフォレスト
機会学習ハッカソン:ランダムフォレスト機会学習ハッカソン:ランダムフォレスト
機会学習ハッカソン:ランダムフォレスト
 

Similar to Latent factor models for Collaborative Filtering

Irt 1 pl, 2pl, 3pl.pdf
Irt 1 pl, 2pl, 3pl.pdfIrt 1 pl, 2pl, 3pl.pdf
Irt 1 pl, 2pl, 3pl.pdf
Carlo Magno
 
Explainable insights on algorithm performance
Explainable insights on algorithm performanceExplainable insights on algorithm performance
Explainable insights on algorithm performance
CSIRO
 

Similar to Latent factor models for Collaborative Filtering (20)

Modeling Economic Relationships.pptx
Modeling Economic Relationships.pptxModeling Economic Relationships.pptx
Modeling Economic Relationships.pptx
 
Irt 1 pl, 2pl, 3pl.pdf
Irt 1 pl, 2pl, 3pl.pdfIrt 1 pl, 2pl, 3pl.pdf
Irt 1 pl, 2pl, 3pl.pdf
 
CEB-02-Cost-Estimating-Techniques.pdf
CEB-02-Cost-Estimating-Techniques.pdfCEB-02-Cost-Estimating-Techniques.pdf
CEB-02-Cost-Estimating-Techniques.pdf
 
.pptx
.pptx.pptx
.pptx
 
Explainable insights on algorithm performance
Explainable insights on algorithm performanceExplainable insights on algorithm performance
Explainable insights on algorithm performance
 
A framework for trustworthiness assessment based on fidelity in cyber and phy...
A framework for trustworthiness assessment based on fidelity in cyber and phy...A framework for trustworthiness assessment based on fidelity in cyber and phy...
A framework for trustworthiness assessment based on fidelity in cyber and phy...
 
Aspiring Minds | Automata
Aspiring Minds | Automata Aspiring Minds | Automata
Aspiring Minds | Automata
 
Parameter Estimation for Semiparametric Models with CMARS and Its Applications
Parameter Estimation for Semiparametric Models with CMARS and Its ApplicationsParameter Estimation for Semiparametric Models with CMARS and Its Applications
Parameter Estimation for Semiparametric Models with CMARS and Its Applications
 
Quantitative Design Tools
Quantitative Design ToolsQuantitative Design Tools
Quantitative Design Tools
 
Entity2rec recsys
Entity2rec recsysEntity2rec recsys
Entity2rec recsys
 
AI driven classification framework for advanced Test Automation
AI driven classification framework for advanced Test AutomationAI driven classification framework for advanced Test Automation
AI driven classification framework for advanced Test Automation
 
AI for PM.pptx
AI for PM.pptxAI for PM.pptx
AI for PM.pptx
 
Modeling and analysis
Modeling and analysisModeling and analysis
Modeling and analysis
 
Logistic Regression Analysis
Logistic Regression AnalysisLogistic Regression Analysis
Logistic Regression Analysis
 
Lecture 1.pptx
Lecture 1.pptxLecture 1.pptx
Lecture 1.pptx
 
Unit2_Regression, ADVANCED ANALYTICAL THEORY AND METHODS USING PYTHON
Unit2_Regression, ADVANCED  ANALYTICAL  THEORY AND  METHODS USING  PYTHONUnit2_Regression, ADVANCED  ANALYTICAL  THEORY AND  METHODS USING  PYTHON
Unit2_Regression, ADVANCED ANALYTICAL THEORY AND METHODS USING PYTHON
 
Introduction to machine learning
Introduction to machine learningIntroduction to machine learning
Introduction to machine learning
 
Models Of Modeling
Models Of ModelingModels Of Modeling
Models Of Modeling
 
Responsible AI in Industry: Practical Challenges and Lessons Learned
Responsible AI in Industry: Practical Challenges and Lessons LearnedResponsible AI in Industry: Practical Challenges and Lessons Learned
Responsible AI in Industry: Practical Challenges and Lessons Learned
 
Gaussian Ranking by Matrix Factorization, ACM RecSys Conference 2015
Gaussian Ranking by Matrix Factorization, ACM RecSys Conference 2015Gaussian Ranking by Matrix Factorization, ACM RecSys Conference 2015
Gaussian Ranking by Matrix Factorization, ACM RecSys Conference 2015
 

More from sscdotopen

Co-occurrence Based Recommendations with Mahout, Scala and Spark
Co-occurrence Based Recommendations with Mahout, Scala and SparkCo-occurrence Based Recommendations with Mahout, Scala and Spark
Co-occurrence Based Recommendations with Mahout, Scala and Spark
sscdotopen
 
Bringing Algebraic Semantics to Mahout
Bringing Algebraic Semantics to MahoutBringing Algebraic Semantics to Mahout
Bringing Algebraic Semantics to Mahout
sscdotopen
 
New Directions in Mahout's Recommenders
New Directions in Mahout's RecommendersNew Directions in Mahout's Recommenders
New Directions in Mahout's Recommenders
sscdotopen
 
Introduction to Collaborative Filtering with Apache Mahout
Introduction to Collaborative Filtering with Apache MahoutIntroduction to Collaborative Filtering with Apache Mahout
Introduction to Collaborative Filtering with Apache Mahout
sscdotopen
 
Scalable Similarity-Based Neighborhood Methods with MapReduce
Scalable Similarity-Based Neighborhood Methods with MapReduceScalable Similarity-Based Neighborhood Methods with MapReduce
Scalable Similarity-Based Neighborhood Methods with MapReduce
sscdotopen
 
Large Scale Graph Processing with Apache Giraph
Large Scale Graph Processing with Apache GiraphLarge Scale Graph Processing with Apache Giraph
Large Scale Graph Processing with Apache Giraph
sscdotopen
 
Introducing Apache Giraph for Large Scale Graph Processing
Introducing Apache Giraph for Large Scale Graph ProcessingIntroducing Apache Giraph for Large Scale Graph Processing
Introducing Apache Giraph for Large Scale Graph Processing
sscdotopen
 

More from sscdotopen (9)

Co-occurrence Based Recommendations with Mahout, Scala and Spark
Co-occurrence Based Recommendations with Mahout, Scala and SparkCo-occurrence Based Recommendations with Mahout, Scala and Spark
Co-occurrence Based Recommendations with Mahout, Scala and Spark
 
Bringing Algebraic Semantics to Mahout
Bringing Algebraic Semantics to MahoutBringing Algebraic Semantics to Mahout
Bringing Algebraic Semantics to Mahout
 
Next directions in Mahout's recommenders
Next directions in Mahout's recommendersNext directions in Mahout's recommenders
Next directions in Mahout's recommenders
 
New Directions in Mahout's Recommenders
New Directions in Mahout's RecommendersNew Directions in Mahout's Recommenders
New Directions in Mahout's Recommenders
 
Introduction to Collaborative Filtering with Apache Mahout
Introduction to Collaborative Filtering with Apache MahoutIntroduction to Collaborative Filtering with Apache Mahout
Introduction to Collaborative Filtering with Apache Mahout
 
Scalable Similarity-Based Neighborhood Methods with MapReduce
Scalable Similarity-Based Neighborhood Methods with MapReduceScalable Similarity-Based Neighborhood Methods with MapReduce
Scalable Similarity-Based Neighborhood Methods with MapReduce
 
Large Scale Graph Processing with Apache Giraph
Large Scale Graph Processing with Apache GiraphLarge Scale Graph Processing with Apache Giraph
Large Scale Graph Processing with Apache Giraph
 
Introducing Apache Giraph for Large Scale Graph Processing
Introducing Apache Giraph for Large Scale Graph ProcessingIntroducing Apache Giraph for Large Scale Graph Processing
Introducing Apache Giraph for Large Scale Graph Processing
 
mahout-cf
mahout-cfmahout-cf
mahout-cf
 

Recently uploaded

SURVEY I created for uni project research
SURVEY I created for uni project researchSURVEY I created for uni project research
SURVEY I created for uni project research
CaitlinCummins3
 
MSc Ag Genetics & Plant Breeding: Insights from Previous Year JNKVV Entrance ...
MSc Ag Genetics & Plant Breeding: Insights from Previous Year JNKVV Entrance ...MSc Ag Genetics & Plant Breeding: Insights from Previous Year JNKVV Entrance ...
MSc Ag Genetics & Plant Breeding: Insights from Previous Year JNKVV Entrance ...
Krashi Coaching
 
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
中 央社
 
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
中 央社
 

Recently uploaded (20)

Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
Basic Civil Engineering notes on Transportation Engineering, Modes of Transpo...
 
An Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge AppAn Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge App
 
philosophy and it's principles based on the life
philosophy and it's principles based on the lifephilosophy and it's principles based on the life
philosophy and it's principles based on the life
 
Removal Strategy _ FEFO _ Working with Perishable Products in Odoo 17
Removal Strategy _ FEFO _ Working with Perishable Products in Odoo 17Removal Strategy _ FEFO _ Working with Perishable Products in Odoo 17
Removal Strategy _ FEFO _ Working with Perishable Products in Odoo 17
 
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
 
Envelope of Discrepancy in Orthodontics: Enhancing Precision in Treatment
 Envelope of Discrepancy in Orthodontics: Enhancing Precision in Treatment Envelope of Discrepancy in Orthodontics: Enhancing Precision in Treatment
Envelope of Discrepancy in Orthodontics: Enhancing Precision in Treatment
 
Đề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinhĐề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinh
 
SURVEY I created for uni project research
SURVEY I created for uni project researchSURVEY I created for uni project research
SURVEY I created for uni project research
 
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjjStl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
 
diagnosting testing bsc 2nd sem.pptx....
diagnosting testing bsc 2nd sem.pptx....diagnosting testing bsc 2nd sem.pptx....
diagnosting testing bsc 2nd sem.pptx....
 
An overview of the various scriptures in Hinduism
An overview of the various scriptures in HinduismAn overview of the various scriptures in Hinduism
An overview of the various scriptures in Hinduism
 
MSc Ag Genetics & Plant Breeding: Insights from Previous Year JNKVV Entrance ...
MSc Ag Genetics & Plant Breeding: Insights from Previous Year JNKVV Entrance ...MSc Ag Genetics & Plant Breeding: Insights from Previous Year JNKVV Entrance ...
MSc Ag Genetics & Plant Breeding: Insights from Previous Year JNKVV Entrance ...
 
“O BEIJO” EM ARTE .
“O BEIJO” EM ARTE                       .“O BEIJO” EM ARTE                       .
“O BEIJO” EM ARTE .
 
How to Analyse Profit of a Sales Order in Odoo 17
How to Analyse Profit of a Sales Order in Odoo 17How to Analyse Profit of a Sales Order in Odoo 17
How to Analyse Profit of a Sales Order in Odoo 17
 
Championnat de France de Tennis de table/
Championnat de France de Tennis de table/Championnat de France de Tennis de table/
Championnat de France de Tennis de table/
 
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
 
PSYPACT- Practicing Over State Lines May 2024.pptx
PSYPACT- Practicing Over State Lines May 2024.pptxPSYPACT- Practicing Over State Lines May 2024.pptx
PSYPACT- Practicing Over State Lines May 2024.pptx
 
The Liver & Gallbladder (Anatomy & Physiology).pptx
The Liver &  Gallbladder (Anatomy & Physiology).pptxThe Liver &  Gallbladder (Anatomy & Physiology).pptx
The Liver & Gallbladder (Anatomy & Physiology).pptx
 
The Ball Poem- John Berryman_20240518_001617_0000.pptx
The Ball Poem- John Berryman_20240518_001617_0000.pptxThe Ball Poem- John Berryman_20240518_001617_0000.pptx
The Ball Poem- John Berryman_20240518_001617_0000.pptx
 
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
 

Latent factor models for Collaborative Filtering

  • 1. AIM3 – Scalable Data Analysis and Data Mining 11 – Latent factor models for Collaborative Filtering Sebastian Schelter, Christoph Boden, Volker Markl Fachgebiet Datenbanksysteme und Informationsmanagement Technische Universität Berlin 20.06.2012 http://www.dima.tu-berlin.de/ DIMA – TU Berlin 1
  • 2. Recap: Item-Based Collaborative Filtering Itembased Collaborative Filtering • compute pairwise similarities of the columns of the rating matrix using some similarity measure • store top 20 to 50 most similar items per item in the item-similarity matrix • prediction: use a weighted sum over all items similar to the unknown item that have been rated by the current user p ui =  j S ( i , u ) s ij ruj  j S ( i , u ) s  ij 20.06.2012 DIMA – TU Berlin 2
  • 3. Drawbacks of similarity-based neighborhood methods • the assumption that a rating is defined by all the user's ratings for commonly co-rated items is hard to justify in general • lack of bias correction • every co-rated item is looked at in isolation, say a movie was similar to „Lord of the Rings“, do we want each part to of the trilogy to contribute as a single similar item? • best choice of similarity measure is based on experimentation not on mathematical reasons 20.06.2012 DIMA – TU Berlin 3
  • 4. Latent factor models ■ Idea • ratings are deeply influenced by a set of factors that are very specific to the domain (e.g. amount of action in movies, complexity of characters) • these factors are in general not obvious, we might be able to think of some of them but it's hard to estimate their impact on the ratings • the goal is to infer those so called latent factors from the rating data by using mathematical techniques 20.06.2012 DIMA – TU Berlin 4
  • 5. Latent factor models ■ Approach • users and items are characterized by latent n f factors, each user and item is mapped onto ui ,m j  R a latent feature space • each rating is approximated by the dot T rij  m j u i product of the user feature vector and the item feature vector • prediction of unknown ratings also uses this dot product • squared error as a measure of loss r ij T  m j ui  2 20.06.2012 DIMA – TU Berlin 5
  • 6. Latent factor models ■ Approach • decomposition of the rating matrix into the product of a user feature and an item feature matrix • row in U: vector of a user's affinity to the features • row in M: vector of an item's relation to the features • closely related to Singular Value Decomposition which produces an optimal low-rank optimization of a matrix MT R ≈ U 20.06.2012 DIMA – TU Berlin 6
  • 7. Latent factor models ■ Properties of the decomposition • automatically ranks features by their „impact“ on the ratings • features might not necessarily be intuitively understandable 20.06.2012 DIMA – TU Berlin 7
  • 8. Latent factor models ■ Problematic situation with explicit feedback data • the rating matrix is not only sparse, but partially defined, missing entries cannot be interpreted as 0 they are just unknown • standard decomposition algorithms like Lanczos method for SVD are not applicable Solution • decomposition has to be done using the known ratings only • find the set of user and item feature vectors that minimizes the squared error to the known ratings  r  m j ui  T 2 min U, M i, j 20.06.2012 DIMA – TU Berlin 8
  • 9. Latent factor models ■ quality of the decomposition is not measured with respect to the reconstruction error to the original data, but with respect to the generalization to unseen data ■ regularization necessary to avoid overfitting ■ model has hyperparameters (regularization, learning rate) that need to be chosen ■ process: split data into training, test and validation set □ train model using the training set □ choose hyperparameters according to performance on the test set □ evaluate generalization on the validation set □ ensure that each datapoint is used in each set once (cross-validation) 20.06.2012 DIMA – TU Berlin 9
  • 10. Stochastic Gradient Descent • add a regularizarion term min U, M  r i, j T  m j ui  2  + λ ui 2 + m j 2  • loop through all ratings in the training set, compute associated prediction error T e ui = rij  m j u i • modify parameters in the opposite direction of the gradient u i  u i + γ e u, i m j  λu i  m j  m j + γ e u, i u i  λm j  • problem: approach is inherently sequential (although recent research might have unveiled a parallelization technique) 20.06.2012 DIMA – TU Berlin 10
  • 11. Alternating Least Squares with Weighted λ-Regularization ■ Model • feature matrices are modeled directly by using only the observed ratings • add a regularization term to avoid overfitting • minimize regularized error of: f U, M =  r ij  m j ui  + λ T 2  n u i ui 2 +  nm j m j 2  Solving technique • fixing one of the unknown variable to make this a simple quadratic equation • rotate between fixing u and m until convergence („Alternating Least Squares“) 20.06.2012 DIMA – TU Berlin 11
  • 12. ALS-WR is scalable ■ Which properties make this approach scalable? • all the features in one iteration can be computed independently of each other • only a small portion of the data necessary to compute a feature vector Parallelization with Map/Reduce • Computing user feature vectors: the mappers need to send each user's rating vector and the feature vectors of his/her rated items to the same reducer • Computing item feature vectors: the mappers need to send each item's rating vector and the feature vectors of users who rated it to the same reducer 20.06.2012 DIMA – TU Berlin 12
  • 13. Incorporating biases ■ Problem: explicit feedback data is highly biased □ some users tend to rate more extreme than others □ some items tend to get higher ratings than others ■ Solution: explicitly model biases □ the bias of a rating is model as a combination of the items average rating, the item bias and the user bias b ij    b i  b j □ the rating bias can be incorporated into the prediction rij    b i  b j  m j u i T ˆ 20.06.2012 DIMA – TU Berlin 13
  • 14. Latent factor models ■ implicit feedback data is very different from explicit data! □ e.g. use the number of clicks on a product page of an online shop □ the whole matrix is defined! □ no negative feedback □ interactions that did not happen produce zero values □ however we should have only little confidence in these (maybe the user never had the chance to interact with these items) □ using standard decomposition techniques like SVD would give us a decomposition that is biased towards the zero entries, again not applicable 20.06.2012 DIMA – TU Berlin 14
  • 15. Latent factor models ■ Solution for working with implicit data: weighted matrix factorization 1 rij  0 ■ create a binary preference matrix P p ij   0 rij  0  ■ each entry in this matrix can be weighted by a confidence function □ zero values should get low confidence c ( i , j )  1   rij □ values that are based on a lot of interactions should get high confidence ■ confidence is incorporated into the model □ the factorization will ‚prefer‘ more confident values f U, M =   T c ( i , j ) p ij  m j u i  2 + λ  ui 2 +  m j 2  20.06.2012 DIMA – TU Berlin 15
  • 16. Sources • Sarwar et al.: „Item-Based Collaborative Filtering Recommendation Algorithms“, 2001 • Koren et al.: „Matrix Factorization Techniques for Recommender Systems“, 2009 • Funk: „Netflix Update: Try This at Home“, http://sifter.org/~simon/journal/20061211.html, 2006 • Zhou et al.: „Large-scale Parallel Collaborative Filtering for the Netflix Prize“, 2008 • Hu et al.: „Collaborative Filtering for Implicit Feedback Datasets“, 2008 20.06.2012 DIMA – TU Berlin 16