Adapting AutoARGUE for Automatic Report Evaluation under Missing Citation Annotations
Summary
The AutoARGUE framework (Walden et al., 2026) has been adapted for Task A.2 of RAG4Reports 2026, focusing on automated evaluation to rank 57 report generation systems across 68 topics. A key challenge arose from the RAGTIME-1 corpus, where nugget annotations utilize a "no-reference-doc sentinel" instead of ground-truth citations, rendering AutoARGUE's original citation-relevance gating ineffective. To overcome this, three specific adaptations were implemented: automatic sentinel detection combined with forced direct LLM-based nugget matching, a WEAK POSITIVE partial credit mechanism for sentences that correctly answer nuggets but lack attesting citations, and a report-level request alignment check. The resulting nugget_coverage_weighted metric demonstrated strong performance, achieving the highest topic-level Pearson correlation (r=0.599) among non-coordinator submissions, closely approaching the coordinator baseline of r=0.607.
Key takeaway
For NLP Engineers developing or evaluating Retrieval Augmented Generation (RAG) systems, especially when working with datasets like RAGTIME-1 that lack explicit citation annotations, you should adapt your evaluation frameworks. Standard citation-gated metrics may be inoperable. Consider implementing automatic sentinel detection, LLM-based nugget matching, and partial credit mechanisms for uncited but correct information. This approach, exemplified by the nugget_coverage_weighted metric, offers a robust way to accurately rank system performance even with imperfect ground truth.
Key insights
Robust RAG evaluation requires specific adaptations to handle missing citation annotations effectively.
Principles
- Automated evaluation metrics can approach human baselines.
- Partial credit improves evaluation fairness for uncited correct information.
- LLM-based matching can compensate for missing ground-truth links.
Method
The method involves automatic sentinel detection with forced direct LLM-based nugget matching, a WEAK POSITIVE partial credit mechanism, and a report-level request alignment check.
In practice
- Implement LLM-based nugget matching for citation-poor datasets.
- Design partial credit systems for factual correctness without direct citation.
- Incorporate report-level alignment checks for overall quality.
Topics
- AutoARGUE Framework
- Report Generation
- Automated Evaluation
- Retrieval-Augmented Generation
- Citation Annotation
- LLM-based Evaluation
Best for: AI Scientist, NLP Engineer, Research Scientist
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.