hardAI Engineering

How do you evaluate a RAG pipeline end to end?

1.0k views
01

Understand the problem

Retrieval metrics (recall@k, MRR) plus generation metrics (faithfulness, relevance) — measured separately.

rag-evaluationrecallfaithfulnessevals
02

Attempt it yourself

Sketch your approach before reading the solution — that's what interviews test.

Stuck? AI Nudge Available

Get a conceptual hint to guide your logic without spoiling the final implementation.

03

Study the solution

The solution is waiting

Give it an honest attempt first — then compare your thinking with the full walkthrough.

04

Read the code

Retrieval eval: recall@k over a labeled set
def recall_at_k(cases, retriever, k=6):
    hits = 0
    for case in cases:                       # {"query": ..., "gold_chunk_ids": [...]}
        got = {c.id for c in retriever(case["query"], k=k)}
        if got & set(case["gold_chunk_ids"]):
            hits += 1
    return hits / len(cases)

# run on every index/chunking/reranker change:
# recall@6  baseline 0.71 → candidate 0.83   <- ship
# recall@6  baseline 0.71 → candidate 0.64   <- do not ship, whatever the demo showed
05

Join the discussion

Discussion (0)

Sign in to join the discussion.

No responses yet. Be the first to share what you think.