IItemBasedRecommender RecommendedBecause Method NReco.Recommender Class Library
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.

This 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.

Namespace: NReco.CF.Taste.Recommender
Assembly: NReco.Recommender (in NReco.Recommender.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

List<IRecommendedItem> RecommendedBecause(
	long userID,
	long itemID,
	int howMany
)

Return Value

Type: List IRecommendedItem 
[!:List] of IRecommendedItem, ordered from most influential in recommended the given item to least
See Also