Lists the items that were most influential in recommending a given item to a given user. Exactly how this
is determined is left to the implementation, but, generally this will return items that the user prefers
and that are similar to the given item.
Namespace: NReco.CF.Taste.RecommenderThis returns a [!:List] of IRecommendedItem which is a little misleading since it's returning recommending items, but, I thought it more natural to just reuse this class since it encapsulates an item and value. The value here does not necessarily have a consistent interpretation or expected range; it will be higher the more influential the item was in the recommendation.
Assembly: NReco.Recommender (in NReco.Recommender.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Parameters
- userID
- Type: System Int64
ID of user who was recommended the item
- itemID
- Type: System Int64
ID of item that was recommended
- howMany
- Type: System Int32
maximum number of items to return
Return Value
Type: List IRecommendedItem[!:List] of IRecommendedItem, ordered from most influential in recommended the given item to least
See Also