Rendered Source Note

RAGAS: Automated Evaluation of Retrieval Augmented Generation

Generated HTML view. Markdown remains canonical.

RAGAS: Automated Evaluation of Retrieval Augmented Generation

Type: paper Tier: 2 (Foundational Paper) Author(s): Shahul Es, Jithin James, Luis Espinosa-Anke, Steven Schockaert Date: 2023 (submitted 2023-09-26) URL: https://arxiv.org/abs/2309.15217 Accessed: 2026-06-01

Why This Source Matters

A RAG system has two places it can fail — retrieval (wrong context) and generation (right context, wrong answer) — and "it seemed to work" is not an evaluation. RAGAS is the primary source for the reference-free metrics that turn RAG quality into numbers, especially faithfulness, the metric that detects hallucination by checking whether the answer is actually grounded in the retrieved context. It grounds Project 04's evaluation milestone and its hallucination-detection component. "Reference-free" matters: you can score a RAG answer without a human-written gold answer, using the LLM itself as the judge.

Key Claims

The framework

(1) Faithfulness — is the answer grounded in the context?

(2) Answer Relevance — does the answer address the question?

(3) Context Relevance — did retrieval return useful context?

Relevant To

Notes