A IRescorer simply assigns a new "score" to a thing like an ID of an item or user which a
{@link Recommender} is considering returning as a top recommendation. It may be used to arbitrarily re-rank
the results according to application-specific logic before returning recommendations. For example, an
application may want to boost the score of items in a certain category just for one request.
Namespace: NReco.CF.Taste.RecommenderA [!:IRescorer] can also exclude a thing from consideration entirely by returning
from [!:IRescorer.isFiltered].Assembly: NReco.Recommender (in NReco.Recommender.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "T:NReco.CF.Taste.Recommender.IRescorer`1"]
The IRescorer T type exposes the following members.
Methods
Name | Description | |
---|---|---|
IsFiltered |
Returns to exclude the given thing.
| |
Rescore |
Calculate new score for given thing and its original score
|
See Also