Presentation is loading. Please wait.

Presentation is loading. Please wait.

Singular Value Decomposition and Item-Based Collaborative Filtering for Netflix Prize Presentation by Tingda Lu at the Saturday Research meeting 10_23_10.

Similar presentations


Presentation on theme: "Singular Value Decomposition and Item-Based Collaborative Filtering for Netflix Prize Presentation by Tingda Lu at the Saturday Research meeting 10_23_10."— Presentation transcript:

1

2 Singular Value Decomposition and Item-Based Collaborative Filtering for Netflix Prize Presentation by Tingda Lu at the Saturday Research meeting 10_23_10 enhanced (with audio added) by William perrizo Computer Science North Dakota State University Fargo, ND 58108 USA

3 Agenda Singular Value Decomposition Singular Value Decomposition Item-based P-Tree CF algorithm Item-based P-Tree CF algorithm Similarity measurements Similarity measurements Experimental results Experimental results Recommendation System analyzes customer’s purchase history analyzes customer’s purchase history identifies customer’s preference identifies customer’s preference recommends most likely purchases recommends most likely purchases increases customer satisfaction increases customer satisfaction leads to business success leads to business success amazon.com and Netflix amazon.com and Netflix SVD SVD is an important factorization of a rectangular real or matrix, with apps in signal processing and statistics SVD is an important factorization of a rectangular real or matrix, with apps in signal processing and statistics SVD proposed in Netflix by Simon Funk SVD proposed in Netflix by Simon Funk SVD, mathematically, looks nothing like this but engineers, over many years have boiled the technique down into very simple versions (such as this one) for their quick and effective use SVD, mathematically, looks nothing like this but engineers, over many years have boiled the technique down into very simple versions (such as this one) for their quick and effective use

4 What about creating and optimizing (with back propagation) a custom matrix for each prediction we have to make? - i.e., in movie-vote.C or user-vote.C. What about creating and optimizing (with back propagation) a custom matrix for each prediction we have to make? - i.e., in movie-vote.C or user-vote.C. The call from mpp-user-C to e.g., movie-vote.C sends M,U,supM,supU. The call from mpp-user-C to e.g., movie-vote.C sends M,U,supM,supU. *** In movie-vote [or user-vote] before entering the nested loop (outer VoterLoop, inner DimLoop), train optimal V T and N matrixes for that vote only (so # features high [pruned supM and supU are << 17K and 500K) *** In movie-vote [or user-vote] before entering the nested loop (outer VoterLoop, inner DimLoop), train optimal V T and N matrixes for that vote only (so # features high [pruned supM and supU are << 17K and 500K) SVD User’s rate movies with user preferences about various features of the movie. User’s rate movies with user preferences about various features of the movie. Features can be anything you want them to be (or nothing! randomly constructed!). Features can be anything you want them to be (or nothing! randomly constructed!). In fact, it is typical to start with a fix number of meaningless features populated with random values, then back propagate to "improve" those values until some satisfaction level is reached (in terms of the RMSE). This back propagation is identical to that of the back prop of Neural Networks. In fact, it is typical to start with a fix number of meaningless features populated with random values, then back propagate to "improve" those values until some satisfaction level is reached (in terms of the RMSE). This back propagation is identical to that of the back prop of Neural Networks. Tingda Lu found 30 features too small and 100 right (200 was too time consuming). Tingda Lu found 30 features too small and 100 right (200 was too time consuming). features --> users --> movies --> features --> Another option would be to cluster U T with respect to "max common cosupport" (what ever that might mean - the larger the common cosupport is taken to be the smaller the cluster will be. If ccs is required to be too large, many of the cluster may end up being singleton - meaning we are back to where we were before this clustering (no effect). Do the sam e with M. Then train the submatrix pairs (each pair one at a time - but note this is entirely parallelizable over a computer cluster. Now each time a pair (u,m) needs a ratings prediction retrieve the appropriate cluster pair (the V T that contains u and the N that contains m), and apply the r u,i formula below (i=m).

5 SVD training Parameters: learning rate and lambda Parameters: learning rate and lambda Tune the parameters to minimize error Tune the parameters to minimize error Collaborative Filtering (CF) alg is widely used in recommendation systems Collaborative Filtering (CF) alg is widely used in recommendation systems User-based CF algorithm is limited because of its computation complexity User-based CF algorithm is limited because of its computation complexity Movie-based (Item-based) CF has less scalability concerns Movie-based (Item-based) CF has less scalability concerns /* Movie-based PTree CF*/ PTree.load_binary(); // Calculate the similarity while i in I { while j in I { sim i,j = sim(PTree[i], Ptree[j]); }} // Get the top K nearest neighbors to item i pt=Ptree.get_items(u); sort(pt.begin(), pt.end(), sim i,pt.get_index() ); // Prediction of rating on item i by user u sum = 0.0, weight = 0.0; for (j=0; j<K; ++j) { sum += r u,pt[j] * sim i,pt[j] ; weight += sim i,pt[j] ; weight += sim i,pt[j] ;} pred = sum/weight sim is any simmilarity function. The only req. is that sim(i.i) >= sim(i,j). In movie-vote.C one could backpropagate train V T and N (see *** on previous slide) anew for each call from mpp-user.C to movie-vote.C and thereby allow a large number of features (much higher accuracy?) because V T and N are much smaller than U T and M Here Closed Nearest Neighbor methods should improve the result! If the similarity is simple enough to allow the calculation through PTrees, then closed K Nearest Neighbor will be both faster and more accurate.

6 Similarities (correlations) Cosine based Cosine based Pearson correlation Pearson correlation Adjusted Cosine SVD item-feature or Tingda Lu similarity? or combining Pearson and Adj Cosine: * i i j j

7 Similarity Correction Two items are not similar if only a few customers purchased or rated both Two items are not similar if only a few customers purchased or rated both Co-support is included in item similarity Co-support is included in item similarity Prediction Weighted Average Item Effects \ RMSE Neighbor Size \ RMSE Neighbor Size CosinePearsonAdj. CosSVD IF K=101.07421.00920.97860.9865 K=201.06291.00060.96850.9900 K=301.06021.00190.96660.9972 K=401.05921.00430.99601.0031 K=501.05891.00640.96581.0078 Adj Cosine similarity gets much lower RMSE The reason lies in the fact that other algorithms do not exclude the user rating variance Adjusted Cosine algorithm discards the user variance hence gets better prediction accuracy

8 Similarity Correction All algorithms get better RMSE with similarity correction except Adjusted Cosine. CosinePearsonAdj. CosSVD IF Before1.05891.00060.96580.9865 After1.05880.97261.06370.9791 Improve0.009%2.798%-10.137%0.750% Item Effects Improvements for all algorithms. Individual’s behavior influenced by others. CosinePearsonAdj. CosSVD IF Before1.05891.00060.96580.9865 After0.957500.94500.94680.9381 Improve9.576%5.557%1.967%4.906% Conclusion Experiments were carried out on Cosine, Pearson, Adjusted Cosine and SVD item-feature algs Support correction and item effects significantly improve the prediction accuracy. Pearson and SVD item-feature algs achieve better results with similarity correction and item effects.

9 10_23_10 Saturday notes (by Mohammad) Participants: Mohammad, Arjun, Arijit, Using Skype – Tingda and Prakash. 10_23_10 Saturday notes (by Mohammad) Participants: Mohammad, Arjun, Arijit, Using Skype – Tingda and Prakash. Tingda Lu: “Singular Value Decomposition and item-based collaborative filtering for Netflix prize”. As Tingda went through the slides, the group members discussed various issues. Here are some key points of the discussions In the 5th slide, Tingda showed two matrices U and M. Matrix UT contains the users in rows and features in the columns. So there would be 500,000 rows in the matrix (as there are half a million users in the Netflix problem) but number of features is not known (as it is not described in the problem). As Tingda mentioned, you can take as many features as you wish but larger number would give you good result. The value of these features might be randomly filled but they will converge to some values by neural network back propagation. As Tingda found 10 to 30 features are too small, 40 – 60 still not large enough and 100 is good enough. M is the movie matrix where rows represent the features and columns represent the movies. So there are 100 features and 17,000 movies. So it’s a 100x17000 matrix – same thing goes for the features. Arijit suggested that we may go the Netflix’s website to see what the features they use to describe their movies are and we may use those features. In slide no 8, an algorithm is shown for “Item based PTree CF”. The alg 1st calculates similarity between items in the item set I. Here a long discussion took place to choose the similarity function: –Tingda gave 4 similarity fctns; cosine, pearson, adjusted cosine and SVD item feature (shown in slide 9, 10). –Dr. Perrizo's similarity is Sim(i, j) = a positive real number following the property that Sim(i, i) >= Sim(i, j). –Dr. Perrizo made a suggestion of combining the Pearson and Adjusted cosine similarity function as follows: In 2nd part, K nearest nbrs are computed. Dr. P suggested to use Closed KNN. I.e., consider all nbrs same distance as kth Dr. P.:use Sum of Cor (ui, uj), not Nij Then Dr. P.: Use these similarities in use-vote.C and movie-vote.C and get ‘Pruned Training Set Support’ (PTSS) values, which will be used by mpp-user.C to make the final prediction (? ) More features -> more accuracy: In 1, if we include more features that will give us more accuracy in prediction. But we already have too many rows in user matrix (half a million). And we need to train the matrix using back prop (very time consuming). So don’t train matrices before pruning seriously like 10 users so that you can increase number of features. Make code generic (not specific to Netflix problem) so that the code may be used in e.g., satellite imagery – LandSat 5?). 0 rating is not really 0 in Netflix problem should be removed in generic code as 0 may be a valid rating in other problem. Tingda used similarity correction. E.g., he didn’t use 2 items ( or movies) similar if only a few number of users rated both. Tingda's formula: Log(Nij)*Sim(I,j) Dr. Perrizo suggest to use Sum of Cor (ui, uj) instead of Nij


Download ppt "Singular Value Decomposition and Item-Based Collaborative Filtering for Netflix Prize Presentation by Tingda Lu at the Saturday Research meeting 10_23_10."

Similar presentations


Ads by Google