Pick the strongest signal that your post-rerank top-k is too large
Faithfulness rising while answer-relevance falls is the diagnostic fingerprint of distractor dilution from an over-generous top-k.
Imagine asking a friend for the fastest route home and they hand you ten maps. Most of the maps are real and accurate, so they are not lying. But only one map actually shows your route, and the other nine are for nearby cities. You glance at all ten and end up describing some hybrid route that touches the right city but takes you through three wrong ones. Your friend was grounded in the maps, you can see that. The route you got was still wrong for the trip you were asking about. That is what happens when retrieval returns too many chunks. The model stays grounded in them, but the chunks pull the answer away from the actual question.
Detailed answer & concept explanation~5 min readEverything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example.
Everything important, quickly.
4 minutes: the two metrics, why they diverge, distractor-dilution mechanism, why other signals are noisy, how to set up the eval that surfaces the corner-point of top-k.
Real products, models, and research that use this idea.
- RAGAs (Explodinggradients) is the open-source eval framework that operationalizes faithfulness and answer-relevance as separate LLM-judge metrics.
- DeepEval (Confident AI) implements faithfulness and answer-relevance with configurable judge models including Claude Opus 4.7 and GPT-5.5.
- LangSmith and LangFuse both ship RAG-eval templates that surface the two-metric divergence as a tuning signal for production teams.
- Cohere's 2026 rerank tuning guide uses faithfulness-relevance divergence as the recommended diagnostic when sizing top-n.
- Pinecone's 2026 RAG evaluation cookbook walks through tuning top-k against the divergence on a labeled gold set.
What an interviewer would ask next. Try answering before peeking at the approach.
QHow would you build the offline eval that surfaces this divergence?
QIf faithfulness is falling instead of rising, what does that suggest?
Don't say thisRed flags and common mistakes that signal junior thinking. Click to expand.
Red flags and common mistakes that signal junior thinking. Click to expand.
Treating rising answer length or higher TTFT as the top-k tuning signal. Those move for many reasons. The clean signal is the divergence between two RAG-eval metrics, faithfulness up, answer-relevance down.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.
Same topic, related formats. Practice these next.