-
Notifications
You must be signed in to change notification settings - Fork 73
Description
Extend the existing RBP metric to handle graded relevance judgements (non-binary r_i ∈ [0, 1]) as described in Rank-Biased Precision for Measurement of Retrieval Effectiveness . Graded RBP reflects fractional utility rather than binary success, but uses the same weighting and persistence model.
Proposed Implementation
- Add a new class
GradedRBP, inheriting fromRBP - Reads a relevance field (default:
grade) from the testItemList - Scale grades to a unit range
[0, 1] - Default grade value for unseen items =
0.25 - If
gradefield is not found, defaults to binary RBP
Questions
Should we assume the grade field is already scaled to [0, 1]? If not, we can apply scaling. So, should scaling be optional here? Should we divide by the max grade value for scaling or is there a different method?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
In Progress