In RAG retrieval evaluation, what does recall@k measure?
- aFraction of the top-k retrieved chunks that are relevant
- bFraction of relevant chunks appearing in the top-k results✓
- cWhether the single highest-ranked chunk is relevant
- dThe rank position of the first relevant chunk
Explanation:Recall@k = (relevant chunks found in top-k) / (total relevant chunks that exist), so it measures coverage of the full relevant set (b). Fraction of top-k that are relevant is precision@k, not recall@k (a is wrong). Checking only the top-1 chunk describes hit@1, a different metric (c is wrong). The rank of the first relevant chunk is the basis of MRR, not recall@k (d is wrong).