MemoRAG: Boosting Long Context Processing with Global Memory-Enhanced Retrieval Augmentation
Hongjin Qian, Zheng Liu, Peitian Zhang, Kelong Mao, Defu Lian, Zhicheng Dou, Tiejun Huang
TL;DR
MemoRAG tackles the challenge of long-context processing by introducing a global memory augmented retrieval framework. It combines a light memory module that generates draft clues with a traditional retrieval-augmented generation pipeline and a separate expressive generator, enhanced by a KV-compressible memory and reinforcement learning with generation feedback (RLGF). Empirical results across long-context benchmarks and the UltraDomain suite show MemoRAG outperforms standard and advanced RAG methods and long-context LLMs, including in non-QA and complex QA tasks, while maintaining favorable efficiency. This approach broadens the applicability of RAG to very long inputs and domain-general tasks, offering scalable memory for evidence retrieval and high-quality generation.
Abstract
Processing long contexts presents a significant challenge for large language models (LLMs). While recent advancements allow LLMs to handle much longer contexts than before (e.g., 32K or 128K tokens), it is computationally expensive and can still be insufficient for many applications. Retrieval-Augmented Generation (RAG) is considered a promising strategy to address this problem. However, conventional RAG methods face inherent limitations because of two underlying requirements: 1) explicitly stated queries, and 2) well-structured knowledge. These conditions, however, do not hold in general long-context processing tasks. In this work, we propose MemoRAG, a novel RAG framework empowered by global memory-augmented retrieval. MemoRAG features a dual-system architecture. First, it employs a light but long-range system to create a global memory of the long context. Once a task is presented, it generates draft answers, providing useful clues for the retrieval tools to locate relevant information within the long context. Second, it leverages an expensive but expressive system, which generates the final answer based on the retrieved information. Building upon this fundamental framework, we realize the memory module in the form of KV compression, and reinforce its memorization and cluing capacity from the Generation quality's Feedback (a.k.a. RLGF). In our experiments, MemoRAG achieves superior performances across a variety of long-context evaluation tasks, not only complex scenarios where traditional RAG methods struggle, but also simpler ones where RAG is typically applied.
