SVD++ refers to a matrix factorization model which makes use of implicit feedback information. In general, implicit feedback can refer to any kinds of users' history information that can help indicate users' preference.
CONTENTS[hide]
|
The SVD++ model is formally described as following equation:
where is the set of implicit information( the set of items user u rated ).
A more general form of utilizing implicit/explicit information as user factor can be described in following equation
Here is the set of user feedback information( e.g: the web pages the user clicked, the music on users' favorite list, the movies user watched, any kinds of information that can be used to describe the user).
is a feature weightassociates with the user feedback information. With the most two common choices: (1)
for implicit feedback, (2)
for explicit feedback.
(一直搞不清楚上面公式当中yi到底是什么,现在清楚了,yi就是上面所写出来的隐式反馈!)
SVD++ can be trained using ALS.
It is slow to train a SVD++-style model using stochastic gradient descent due to the size of user feedback information, however, an efficient SGD training algorithm can be used. [1] describes efficient training with user feedback information in section 4