The Pitfalls of Self-Grading in RAG Evaluation: Understanding the "Zero Spread" Phenomenon

An analysis of the discrepancies between self-grading and independent judge evaluations in Retrieval-Augmented Generation (RAG) pipelines, highlighting how a faithfulness spread of 0.000 can signal a lack of critical evaluation.

The Challenge of RAG Faithfulness Evaluation

Evaluating the faithfulness of a Retrieval-Augmented Generation (RAG) system—ensuring that the generated response is strictly grounded in the retrieved context—is a critical step in preventing hallucinations. A common industry practice is "self-grading," where the same LLM that generates the answer is also tasked with grading its own faithfulness.

Self-Grading vs. Independent Judging

Recent experimental results reveal a significant discrepancy when comparing self-grading outcomes against those from an independent judge from a different model family. In a test involving 100 answers, a self-grading approach yielded a faithfulness score of 0.67. However, an independent judge identified that 33% of the answers were factually incorrect despite being grounded in the provided context.

The "Spread = 0.000" Indicator

The author highlights a specific technical red flag: a "faithfulness spread" of 0.000. When a model's self-evaluation shows zero variance or an unrealistic consistency in its grading, it often serves as a "tell" that the model is failing to critically analyze its own errors, potentially confirming its own hallucinations as correct.

Key Findings

The core issue identified is the inherent bias in self-grading. When a model grades its own output, it is prone to confirmation bias, overlooking factual inaccuracies that an external model from a different architecture or training set would easily detect.

Note: The provided source material is an excerpt. Detailed methodology regarding the specific models used for the independent judge and the exact calculation of the "spread" metric were not included in the raw text.

Original Source
RAG LLM Evaluation Faithfulness Self-Grading Hallucinations