similar to http://myrrix.com/rest-api/#mostpopularitems
, how do i get users with most user-item preferences?
Asked
Active
Viewed 92 times
1 Answers
2
You would have to flip your model from user,item to item,user and then call the mostpopularitems method.

Julian Ortega
- 947
- 4
- 11
-
isn't there any other option? – ulkas Jun 07 '13 at 13:34
-
2That's right, the model is asymmetric by design really. The assumption is that users and items are different, and that you do different things with them. Users with the most ratings isn't a common thing to query. – Sean Owen Jun 07 '13 at 14:17