Slope One Article Index for
Slope
Shopping
Slope
Website Links For
Slope
 

Information About

Slope One




Item-based Collaborative Filtering used in the context (Vucetic, Obradovic 2000 and Sarwar, Karypis et al. 2001) predict the ratings on one item based on the ratings on another item, typically using linear regression (f(x)=ax+b). Hence, if there are 1000 items, there could be up to 1000000 linear regression to be learned, and so, up to 2000000 regressors! This approach can suffer from severe overfitting and the performance is generally poor unless we select only the pairs of items for which several users have rated both items.

If a user rated several items, the predictions are simply combined using a weighted average where a good choice for the weight is the number of users having rated both items.


ITEM-BASED COLLABORATIVE FILTERING OF PURCHASE STATISTICS


Other examples of item-based collaborative filtering include Amazon's item-to-item patented algorithm which computes the cosine between binary vectors representing the purchases in a user-item matrix.


SLOPE ONE COLLABORATIVE FILTERING FOR RATED RESOURCES


To drastically reduce overfitting, improve performance and ease implementation, the Slope One family of easily implemented Item-based Rating-Based Collaborative Filtering algorithms was proposed. Essentially, instead of using linear regression from one item's ratings to another item's ratings (f(x)=ax+b), it uses a simpler form of regression with a single free parameter (f(x)=x+b). The free parameter is then simply the average different between the two items' ratings. It was shown to be much more accurate than linear regression, and it takes half the storage or less.

Example:

# Joe gave a 1 to Dion and an 1.5 to Lohan.
# Jill gave a 2 to Dion.
# How do you think Jill rated Lohan?
# The Slope One answer is to say 2.5 (1.5-1+2=2.5).


RECOMMENDER SYSTEMS USING SLOPE ONE




OPEN SOURCE SOFTWARE IMPLEMENTING SLOPE ONE




REFERENCES