|
MyMediaLite
3.02
|
Extension methods for IRecommender. More...
Static Public Member Functions | |
| static System.Collections.Generic.IList < int > | PredictItems (this IRecommender recommender, int user_id, System.Collections.Generic.IList< int > candidate_items, int n=-1) |
| Predict items for a given user. | |
| static System.Collections.Generic.IList < Pair< int, float > > | ScoreItems (this IRecommender recommender, int user_id, System.Collections.Generic.IList< int > candidate_items, int n=-1) |
| Score items for a given user. | |
Extension methods for IRecommender.
| static System.Collections.Generic.IList<int> PredictItems | ( | this IRecommender | recommender, |
| int | user_id, | ||
| System.Collections.Generic.IList< int > | candidate_items, | ||
| int | n = -1 |
||
| ) | [inline, static] |
Predict items for a given user.
| recommender | the recommender to use |
| user_id | the numerical ID of the user |
| candidate_items | a collection of numerical IDs of candidate items |
| n | number of items to return (optional) |
| static System.Collections.Generic.IList<Pair<int, float> > ScoreItems | ( | this IRecommender | recommender, |
| int | user_id, | ||
| System.Collections.Generic.IList< int > | candidate_items, | ||
| int | n = -1 |
||
| ) | [inline, static] |
Score items for a given user.
| recommender | the recommender to use |
| user_id | the numerical ID of the user |
| candidate_items | a collection of numerical IDs of candidate items |
| n | number of items to return (optional) |
1.7.6.1