Noise-Robust Abstractive Compression in Retrieval-Augmented Language Models
Singon Kim
TL;DR
Retrieval-augmented language models struggle when retrieved documents contain noise, causing important information to be missed or misinformation to slip through. The authors propose ACoRN, a two-step training framework that (1) uses offline data augmentation to simulate retrieval noise and (2) finetunes the compressor to produce summaries centered on evidential content that directly supports the correct answer. By distinguishing evidential documents from noise and distilling labels from an evidential-focused teacher, ACoRN yields higher EM/F1 and preserves answer strings while reducing inference time on ODQA benchmarks. The approach demonstrates improved robustness to both irrelevant and factual-error documents, offering practical benefits for real-world retrieval-augmented systems. Overall, ACoRN provides a scalable, noise-robust abstractive compression method that enhances reliability and efficiency in RAG setups.
Abstract
Abstractive compression utilizes smaller langauge models to condense query-relevant context, reducing computational costs in retrieval-augmented generation (RAG). However, retrieved documents often include information that is either irrelevant to answering the query or misleading due to factual incorrect content, despite having high relevance scores. This behavior indicates that abstractive compressors are more likely to omit important information essential for the correct answer, especially in long contexts where attention dispersion occurs. To address this issue, we categorize retrieved documents in a more fine-grained manner and propose Abstractive Compression Robust against Noise (ACoRN), which introduces two novel training steps. First, we use offline data augmentation on the training dataset to enhance compressor robustness against two distinct types of retrieval noise. Second, since the language model based compressor cannot fully utilize information from multiple retrieved documents and exhibits positional bias, we perform finetuning to generate summaries centered around key information that directly supports the correct answer. Our experiments demonstrate that T5-large, trained with ACoRN as a compressor, improves EM and F1 scores while preserving the answer string, which could serve as direct evidence. ACoRN excels on datasets with many accuracy reducing documents, making it highly useful in real-world scenarios.
