Matrix factorization (recommender systems): Difference between revisions

Content deleted Content added
Line 16:
<math>\tilde{r}_{ui} = \sum_{f=0}^{n factors} H_{u,f}W_{f,i}</math>
 
It is possible to tune the expressive power of the model by changing the number of latent factors. It has been demonstrated <ref name="Jannach13">{{cite book |last1=Jannach |first1=Dietmar |last2=Lerche |first2=Lukas |last3=Gedikli |first3=Fatih |last4=Bonnin |first4=Geoffray |title=What Recommenders Recommend – An Analysis of Accuracy, Popularity, and Sales Diversity Effects |journal=User Modeling, Adaptation, and Personalization |volume=7899 |date=2013 |pages=25–37 |doi=10.1007/978-3-642-38844-6_3 |publisher=Springer Berlin Heidelberg |language=en|series=Lecture Notes in Computer Science |isbn=978-3-642-38843-9 |citeseerx=10.1.1.465.96 }}</ref> that a matrix factorization with one latent factor is equivalent to a ''most popular'' or ''top popular'' recommender (e.g. recommends the items with the most interactions without any personalization). Increasing the number of latent factor will improve personalization, therefore recommendation quality, until the number of factors becomes too high, at which point the model starts to [[overfitting|overfit]] and the recommendation quality will decrease. A common strategy to avoid overfitting is to add [[regularization (mathematics)|regularization]] terms to the objective function<ref name="bi2017">{{cite journal|last1=ZhuBi|first1=YunzhangXuan|last2=ShenQu|first2=XiaotongAnnie|last3=YeWang|first3=ChangqingJunhui|last4=Shen|first4=Xiaotong|year=20162017|title=PersonalizedA predictiongroup-specific andrecommender sparsity pursuit in latent factor modelssystem.|url=https://amstat.tandfonline.com/doi/abs/10.1080/01621459.2016.1219261|journal=Journal of the American Statistical Association|publisher=|volume=111112|issue=513519|pages=2411344-2521353|doi=}}</ref><ref name="bi2017">{{cite journal|last1=BiZhu|first1=XuanYunzhang|last2=QuShen|first2=AnnieXiaotong|last3=WangYe|first3=Junhui|last4=Shen|first4=XiaotongChangqing|year=20172016|title=APersonalized group-specificprediction recommenderand systemsparsity pursuit in latent factor models.|url=https://amstat.tandfonline.com/doi/abs/10.1080/01621459.2016.1219261|journal=Journal of the American Statistical Association|publisher=|volume=112111|issue=519513|pages=1344241-1353252|doi=}}</ref>.
Funk MF was developed as a ''rating prediction'' problem, therefore it uses explicit numerical ratings as user-item interactions.