Graded relevance is an evaluation schema where human assessors assign ordinal relevance scores—such as irrelevant (0), marginally relevant (1), relevant (2), or perfectly relevant (3)—to documents for a given query. This replaces binary judgments with a multi-level relevance scale that captures degrees of usefulness, enabling metrics like Normalized Discounted Cumulative Gain (NDCG) to reward systems that rank highly relevant documents above partially relevant ones.
Glossary
Graded Relevance

What is Graded Relevance?
Graded relevance is a multi-level judgment framework that assigns ordinal scores to query-document pairs, enabling nuanced evaluation of ranking quality beyond binary metrics.
The framework underpins modern learning-to-rank training data, where graded labels provide richer supervision signals than binary clicks. By distinguishing between partially relevant and authoritative content, graded relevance allows cross-encoder re-rankers and LambdaMART models to learn fine-grained preference functions that align with nuanced user information needs rather than simplistic relevant/not-relevant distinctions.
Core Characteristics of Graded Relevance
Graded relevance moves beyond binary relevant/not-relevant judgments by assigning ordinal scores to query-document pairs, enabling nuanced evaluation with metrics like NDCG.
Ordinal Judgment Scales
Assigns multi-level scores (e.g., 0-4) to documents rather than binary labels. Common scales include:
- 0: Irrelevant
- 1: Marginally relevant
- 2: Relevant
- 3: Highly relevant
- 4: Perfectly authoritative This captures the reality that some documents are more useful than others, enabling metrics to reward systems that rank highly relevant documents above merely relevant ones.
NDCG Optimization Target
Graded relevance is the foundational input for Normalized Discounted Cumulative Gain (NDCG), the dominant listwise ranking metric. NDCG uses the ordinal scores to:
- Compute discounted cumulative gain by applying a logarithmic position discount
- Normalize against the ideal ranking (IDCG) to produce a 0-1 score
- Heavily penalize systems that place highly relevant documents low in the ranked list
Judgment Collection Methods
Graded labels are typically gathered through:
- Expert annotators: Domain specialists assign scores following detailed guidelines with examples for each level
- Crowdsourcing: Platforms like Amazon Mechanical Turk with quality control mechanisms and inter-annotator agreement checks
- Implicit signals: Deriving pseudo-grades from click-through rates, dwell time, or conversion events
- LLM-as-a-Judge: Using large language models prompted with the grading rubric to automate assessment at scale
Inter-Annotator Agreement
Measuring consistency between human judges is critical for label quality. Common metrics include:
- Cohen's Kappa: Measures agreement beyond chance for two raters
- Fleiss' Kappa: Extends agreement measurement to multiple raters
- Weighted Kappa: Accounts for the ordinal nature of grades, penalizing larger disagreements (e.g., 0 vs 4) more severely than adjacent grades (e.g., 2 vs 3) Low agreement signals ambiguous grading guidelines or insufficient annotator training.
Gain Discounting in Evaluation
The 'discount' in NDCG reflects that users are less likely to examine documents deeper in the ranked list. The standard discount function is:
- 1 / log₂(rank + 1): Position 1 gets full gain, position 2 gets ~0.63, position 10 gets ~0.29 This models position bias in user behavior and ensures that metrics reward systems that surface highly relevant documents early, where they have the greatest impact on user satisfaction.
Binary vs. Graded Distinction
Binary relevance collapses all useful documents into a single category, treating a tangentially related page identically to a definitive answer. Graded relevance enables:
- Precision at multiple thresholds: Measure precision@k for 'highly relevant' vs 'any relevance'
- More discriminative evaluation: Systems that rank authoritative sources above merely topical ones receive higher scores
- Realistic user modeling: Reflects that information needs exist on a spectrum from navigational to fully informational
Graded Relevance vs. Binary Relevance
A comparison of multi-level ordinal relevance assessment against simplistic relevant/non-relevant binary judgments in information retrieval evaluation.
| Feature | Graded Relevance | Binary Relevance |
|---|---|---|
Judgment Scale | Ordinal (e.g., 0-4) | Nominal (0 or 1) |
Granularity | Multi-level | Single-level |
Captures Partial Relevance | ||
Supports NDCG Evaluation | ||
Primary Metrics | NDCG, ERR | Precision, Recall, MAP |
Discounted Positional Gain | ||
Annotation Complexity | Higher | Lower |
Inter-Annotator Agreement | Lower (Kappa < 0.7) | Higher (Kappa > 0.9) |
Frequently Asked Questions
Explore the nuances of multi-level relevance judgments and how they enable precise ranking evaluation beyond binary metrics.
Graded relevance is a multi-level judgment scheme that assigns ordinal scores to query-document pairs, capturing degrees of usefulness rather than a simple relevant/not-relevant binary. While binary relevance treats all relevant documents equally, graded relevance distinguishes between perfect, highly relevant, relevant, and marginally relevant content. This nuanced labeling is essential for evaluating modern search and recommendation systems where users care deeply about the order of results. For example, a document directly answering a complex technical question might be scored 3 (Perfect), while a tangentially related article gets a 1 (Marginally Relevant). This scheme powers sophisticated evaluation metrics like Normalized Discounted Cumulative Gain (NDCG), which heavily penalizes highly relevant documents buried low in the rankings. Binary metrics like Precision@k cannot distinguish between a top-10 list full of perfect answers and one full of barely useful links, making graded relevance the standard for training Learning to Rank (LTR) models.
Enabling Efficiency, Speed & Accuracy
Intelligent Analysis, Decision & Execution
We build AI systems for teams that need search across company data, workflow automation across tools, or AI features inside products and internal software.
Talk to Us
Search across company data
Give teams answers from docs, tickets, runbooks, and product data with sources and permissions.
Useful when people spend too long searching or get different answers from different systems.

Automate internal workflows
Use AI to route work, draft outputs, trigger actions, and keep approvals and logs in place.
Useful when repetitive work moves across multiple tools and teams.

Add AI to products and internal tools
Build assistants, guided actions, or decision support into the software your team or customers already use.
Useful when AI needs to be part of the product, not a separate tool.
Related Terms
Core concepts for understanding multi-level relevance assessment and the ranking models that optimize for it.
Cross-Encoder
A neural architecture that processes a query-document pair jointly through full self-attention, enabling deep token-level interaction. Cross-encoders produce highly accurate graded relevance scores but are computationally expensive.
- Use case: Precise re-ranking of top-N candidates
- Input: Concatenated [CLS] query [SEP] document [SEP]
- Output: A single relevance score (often mapped to graded labels)
- Trade-off: High accuracy vs. low throughput; cannot pre-compute document embeddings
LLM-as-a-Judge
A paradigm where a large language model is prompted to evaluate and score output quality using graded relevance scales. The LLM acts as an automated relevance assessor, assigning ordinal scores based on detailed rubrics.
- Scoring: Likert scales (1-5) or binary with confidence
- Advantages: Captures nuanced semantic relevance beyond keyword overlap
- Calibration: Temperature scaling can align LLM confidence with human judgment distributions
- Limitations: Position bias, verbosity bias, and self-enhancement bias require mitigation
Two-Stage Retrieval
A cascade architecture where a fast bi-encoder retrieves candidate documents, and a computationally intensive cross-encoder re-ranks them using fine-grained graded relevance scoring.
- Stage 1: Approximate nearest neighbor search over dense embeddings (high recall)
- Stage 2: Cross-encoder scores top-K candidates (high precision)
- Benefit: Balances latency and accuracy by applying expensive computation only to promising candidates
- Typical K: 100-1000 candidates passed to the re-ranker

About the author
Prasad Kumkar
CEO & MD, Inference Systems
Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.
His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.
Partnered with leading AI, data, and software stack.
How We Work
Custom AI workflows for your Business
One-fit-all AI don't work for modern businesses. At Inferensys, we aim to understand your business & custom requirements; which we use to define most efficient agentic workflows, the data, and the tools for your business.
01
Review the use case
We understand the task, the users, and where AI can actually help.
Read more02
Pick the right approach
We define what needs search, automation, or product integration.
Read more03
Build the first useful version
We implement the part that proves the value first.
Read more04
Improve from there
We add the checks and visibility needed to keep it useful.
Read moreThe first call is a practical review of your use case and the right next step.
Talk to Us