Predict what slice-level eval reveals about an 85% faithful RAG system suspected to fail on multi-hop queries
Same topic, related formats. Practice these next.
Same topic, related formats. Practice these next.
A RAG system reports 85% overall faithfulness across all queries. A team member suspects it fails specifically on multi-hop queries (questions requiring synthesis of information from multiple documents). The team decides to disaggregate the eval set by query complexity: - Single-hop queries: 400 examples - Multi-hop queries: 100 examples If the suspicion is correct and multi-hop faithfulness is significantly lower, what would the slice-level results most likely show?
The 85% mean hides the failure. Single-hop sits near 95% and multi-hop near 45%, a 50-point gap, because the 400 easy queries outvote the 100 hard ones in the weighted average.
Imagine a school reports an 85% average pass rate and everyone relaxes. But the school has 400 easy-test students and only 100 hard-test students. The easy group scored 95%, the hard group scored 45%, and the big easy group dragged the average up to 85%. The single number looked healthy while almost half of one group was failing. Faithfulness in a RAG system works the same way. Faithfulness measures whether an answer's claims are actually backed by the retrieved documents. If you only look at the overall 85%, the 400 simple single-hop questions outvote the 100 hard multi-hop ones, so a severe multi-hop failure stays invisible. The fix is to grade each group separately instead of trusting one blended score.
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.
5 min: solve the weighted average for the hidden single-hop slice, explain why volume imbalance lets the mean mask a severe multi-hop failure, then cover stratified reporting and worst-slice gating.
Real products, models, and research that use this idea.
What an interviewer would ask next. Try answering before peeking at the approach.
Red flags and common mistakes that signal junior thinking. Click to expand.
Reading the 85% aggregate as a per-query guarantee. A weighted mean over imbalanced slices can hide a near-total failure on a small but critical slice.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.