🤖 AI Summary
Low inter-annotator consistency and poor reliability of LLM-based judges hinder automatic evaluation of RAG models. To address this, we propose Judge-Consistency (ConsJudge), a novel method that elicits fine-grained judgments from LLMs via multi-perspective prompting and leverages cross-prompt judgment consistency as the primary supervisory signal to select high-quality samples for DPO training. ConsJudge is the first approach to explicitly model judgment consistency as the core optimization objective—moving beyond the conventional “LLM-as-a-judge” paradigm that relies solely on single-response evaluation. Extensive experiments across multiple RAG models and benchmark datasets demonstrate that ConsJudge significantly improves evaluation accuracy and robustness, achieving strong inter-judge agreement (Cohen’s κ > 0.85) with state-of-the-art LLM judges. The implementation is publicly available.
📝 Abstract
Retrieval-Augmented Generation (RAG) has proven its effectiveness in alleviating hallucinations for Large Language Models (LLMs). However, existing automated evaluation metrics cannot fairly evaluate the outputs generated by RAG models during training and evaluation. LLM-based judgment models provide the potential to produce high-quality judgments, but they are highly sensitive to evaluation prompts, leading to inconsistencies when judging the output of RAG models. This paper introduces the Judge-Consistency (ConsJudge) method, which aims to enhance LLMs to generate more accurate evaluations for RAG models. Specifically, ConsJudge prompts LLMs to generate different judgments based on various combinations of judgment dimensions, utilize the judge-consistency to evaluate these judgments and select the accepted and rejected judgments for DPO training. Our experiments show that ConsJudge can effectively provide more accurate judgments for optimizing RAG models across various RAG models and datasets. Further analysis reveals that judgments generated by ConsJudge have a high agreement with the superior LLM. All codes are available at https://github.com/OpenBMB/ConsJudge.