Jennifer A Bishop, Qianqian Xie, Sophia Ananiadou
5 min
Evaluating the factual consistency of abstractive summaries is a major challenge in natural language processing. While traditional metrics like ROUGE measure word overlap, they fail to capture factual accuracy. More advanced, model-based metrics exist, but they are typically designed for short documents and suffer from restrictive token limits. When applied to long documents, these metrics must truncate the source text, often discarding critical information needed to verify the summary's claims. This study addresses the lack of effective, scalable evaluation methods for long-document summarization.
The authors propose LongDocFACTScore, a reference-free evaluation framework designed to scale to documents of any length. Instead of processing the entire source document at once, the framework splits both the summary and the source document into individual sentences. It uses sentence embeddings to identify the most relevant sections of the source document for each summary sentence. By concatenating these relevant snippets, the framework creates a manageable context that can be fed into existing evaluation metrics (such as BARTScore). This approach ensures that the evaluation is both computationally efficient and focused on the specific evidence required to verify each claim in the summary.
To validate the framework, the authors introduced LongSciVerify, a new human-annotated dataset containing scientific and biomedical documents with fine-grained factual consistency labels. They compared LongDocFACTScore against several state-of-the-art metrics, including ROUGE, BERTScore, FactCC, and QuestEval. Experimental results demonstrate that LongDocFACTScore consistently outperforms these baselines, showing a stronger correlation with human judgments of factual consistency across both the LongSciVerify and LongEval datasets. The findings suggest that by intelligently selecting relevant source context, researchers can effectively adapt existing metrics to the complexities of long-document summarization.
Maintaining factual consistency is a critical issue in abstractive text summarisation, however, it cannot be assessed by traditional automatic metrics used for evaluating text summarisation, such as ROUGE scoring. Recent efforts have been devoted to developing improved metrics for measuring factual consistency using pre-trained language models, but these metrics have restrictive token limits, and are therefore not suitable for evaluating long document text summarisation. Moreover, there is limited research and resources available for evaluating whether existing automatic evaluation metrics are fit for purpose when applied in long document settings. In this work, we evaluate the efficacy of automatic metrics for assessing the factual consistency of long document text summarisation. We create a human-annotated data set for evaluating automatic factuality metrics, LongSciVerify, which contains fine-grained factual consistency annotations for long document summaries from the scientific domain. We also propose a new evaluation framework, LongDocFACTScore, which is suitable for evaluating long document summarisation. This framework allows metrics to be efficiently extended to any length document and outperforms existing state-of-the-art metrics in its ability to correlate with human measures of factuality when used to evaluate long document summarisation data sets. We make our code and LongSciVerify data set publicly available: https://github.com/jbshp/LongDocFACTScore.
Alex: It sounds like the key insight wasn't more computing power—it was a smarter way to index the information in the first place.
Sam: That's exactly it. By focusing on relevance rather than raw volume, the system becomes both more accurate and significantly faster. You don't need to read everything to find the truth—you need to find the right things.
Alex: How did they make sure their human evaluation was actually reliable? Because if the human baseline is shaky, the whole comparison falls apart.
Sam: That's a fair concern, and the authors addressed it carefully. They built a dataset called LongSciVerify, and they hired domain experts—clinicians and physical scientists—to manually assess whether summaries were factually accurate. To check that these experts were actually agreeing with each other rather than just guessing, they used a statistical measure of agreement. It's a way of asking: if two independent experts look at the same summary, do they reach the same verdict? Getting a strong score there means the human baseline is trustworthy.
Alex: And when they compared the framework's scores against that human baseline, did it hold up?
Sam: It did. LongDocFACTScore showed a notably stronger correlation with human judgment than the standard baseline metrics. The pattern was consistent: the system's ranking of which summaries were most factually accurate tended to match what the human experts concluded.
Alex: But here's something I'm wondering—if the system is only ever looking at small snippets, can it miss the bigger picture? Like, what if a claim only makes sense when you read two sections together?
Sam: That's a genuine limitation, and the authors tested it directly. They tried expanding each snippet to include the surrounding sentences for extra context. It helped somewhat, but the gains were modest. The system works well for checking individual factual claims, but it's less suited to evaluating whether a summary captures the overall argument of a document.
Alex: Are there other trade-offs worth knowing about?
Sam: One notable one. The metric tends to favour summaries that stay close to the original wording. It struggles with paraphrasing—if a summary expresses the same idea in different words, the system may not recognise the match and could incorrectly flag it as inaccurate. So it's a specialised instrument, and the authors are clear that it's not a replacement for human oversight. It's a tool for catching a specific kind of error at scale.
Alex: That's an honest set of trade-offs. A faster, more complete checker—but one that has a bias toward literal language.
Sam: Right. And being transparent about that is part of what makes the work useful. Knowing where a tool falls short is just as important as knowing where it succeeds.
Alex: A smarter index, a more complete check, and a clear-eyed view of the limits. Thanks, Sam. And thank you for listening to ResearchPod.