Conference Paper
Large Language Models

Retrieval-Augmented Reasoning for LLMs

Hieu Tran, Zonghai Yao, Junda Wang, Yifan Zhang, Zhichao Yang, Hong Yu
December 3, 2024Annual Meeting of the Association for Computational Linguistics32 citations

32

Citations

3

Influential Citations

Annual Meeting of the Association for Computational Linguistics

Venue

2024

Year

Abstract

This work introduces RARE (Retrieval-Augmented Reasoning Enhancement), a versatile extension to the mutual reasoning framework (rStar), aimed at enhancing reasoning accuracy and factual integrity across large language models (LLMs) for complex, knowledge-intensive tasks such as medical and commonsense reasoning. RARE incorporates two innovative actions within the Monte Carlo Tree Search framework: (A6), which generates search queries based on the initial problem statement, performs information retrieval using those queries, and augments reasoning with the retrieved data to formulate the final answer; and (A7), which leverages information retrieval specifically for generated sub-questions and re-answers these sub-questions with the relevant contextual information. Additionally, a Retrieval-Augmented Factuality Scorer is proposed to replace the original discriminator, prioritizing reasoning paths that meet high standards of factuality. Experimental results with LLaMA 3.1 show that RARE enables open-source LLMs to achieve competitive performance with top closed-source models like GPT-4 and GPT-4o. This research establishes RARE as a scalable solution for improving LLMs in domains where logical coherence and factual integrity are critical1.

Analysis

Why This Paper Matters

RARE addresses a critical challenge in large language models: maintaining factual accuracy and logical coherence in complex, knowledge-intensive reasoning tasks. While LLMs have shown impressive reasoning capabilities, they often struggle with factual errors and hallucination, especially in specialized domains like medicine. The paper's approach integrates retrieval-augmented generation (RAG) into a Monte Carlo Tree Search (MCTS) framework, enabling models to actively seek external information during reasoning rather than relying solely on parametric knowledge. This is a significant step toward making LLMs more reliable for real-world applications where incorrect information can have serious consequences.

The paper's significance is amplified by its demonstration that open-source models, when augmented with RARE, can rival top closed-source models like GPT-4 and GPT-4o. This has implications for accessibility and cost, as open-source models are more transparent and customizable. By improving the reasoning and factuality of smaller models, RARE could democratize access to high-quality AI reasoning in resource-constrained settings.

Technical Contributions

  • Novel MCTS Actions (A6 and A7): RARE introduces two new actions within the MCTS framework. A6 generates search queries from the initial problem, retrieves relevant information, and uses it to augment the reasoning process. A7 focuses on sub-questions generated during reasoning, retrieving context to re-answer them more accurately. These actions allow the model to dynamically incorporate external knowledge, addressing gaps in its parametric memory.
  • Retrieval-Augmented Factuality Scorer: This scorer replaces the original discriminator in the rStar framework. It evaluates reasoning paths not only for logical consistency but also for factual integrity, using retrieved information as a reference. This guides the search toward paths that are both coherent and factually grounded.
  • Integration with rStar: RARE is designed as a versatile extension to the mutual reasoning framework, making it applicable to various LLMs without requiring architectural changes. This modularity enhances its potential for widespread adoption.

Results

Experimental results with LLaMA 3.1 demonstrate that RARE enables open-source LLMs to achieve competitive performance with GPT-4 and GPT-4o on complex, knowledge-intensive tasks, including medical and commonsense reasoning. While the abstract does not provide specific numerical metrics, the claim of parity with top closed-source models is a strong indicator of the method's effectiveness. The paper emphasizes improvements in both reasoning accuracy and factual integrity, suggesting that RARE not only helps models arrive at correct answers but also ensures the reasoning process is grounded in verifiable information.

Significance

RARE represents a meaningful advancement in retrieval-augmented reasoning, offering a scalable solution to enhance LLM performance in domains where factual accuracy is paramount. By combining the strengths of MCTS-based reasoning with external retrieval, it addresses a key limitation of LLMs: their tendency to generate plausible but incorrect information. The success of RARE with open-source models could accelerate the development of more reliable AI systems in healthcare, education, and other critical fields, while also reducing reliance on proprietary models. Future work may explore optimizing the retrieval process and extending RARE to other reasoning frameworks and model architectures.