Fine-Tuning vs. RAG for Multi-Hop Question Answering with Novel Knowledge
Summary
A study by Zhuoyi Yang, Yurun Song, Kyler G. Harris, Iftekhar Ahmed, and Ian Harris, published in the July 2026 Proceedings of the Fifth Workshop on Generation, Evaluation and Metrics (GEM), systematically compared knowledge injection methods for open-domain multi-hop question answering. The research evaluated unsupervised fine-tuning, supervised fine-tuning, and Retrieval-Augmented Generation (RAG) across three 7B-parameter open-source Large Language Models. Experiments utilized the Question Answering Science Challenge (QASC) and a new dataset of over 10,000 multi-hop questions derived from 2024 Wikipedia events, specifically designed to test novel knowledge. Results indicated that unsupervised fine-tuning offered only limited gains. In contrast, RAG provided substantial and consistent improvements, particularly for questions relying on temporally novel information. Supervised fine-tuning achieved the highest overall accuracy across all models and datasets, underscoring the distinct roles of these knowledge injection mechanisms.
Key takeaway
For Machine Learning Engineers developing LLM-based multi-hop question answering systems, prioritize Retrieval-Augmented Generation (RAG) when dealing with temporally novel or external knowledge. While supervised fine-tuning offers the highest overall accuracy, RAG provides substantial and consistent improvements for dynamic information. You should reconsider relying solely on unsupervised fine-tuning for enhancing multi-hop reasoning capabilities, as it shows limited gains. Focus your efforts on integrating robust retrieval mechanisms or targeted supervised training to achieve superior performance.
Key insights
Supervised fine-tuning and RAG significantly outperform unsupervised fine-tuning for multi-hop question answering, especially with novel knowledge.
Principles
- Continual pretraining alone yields limited multi-hop reasoning gains.
- Retrieval-based methods are critical for external or compositional knowledge.
- Supervised fine-tuning achieves top multi-hop QA accuracy.
Method
Systematically compare unsupervised fine-tuning, supervised fine-tuning, and RAG on 7B-parameter LLMs using QASC and a 2024 Wikipedia-derived multi-hop dataset.
In practice
- Implement RAG for multi-hop QA with dynamic or novel information.
- Prioritize supervised fine-tuning for highest multi-hop accuracy.
- Re-evaluate unsupervised fine-tuning for complex reasoning tasks.
Topics
- Multi-hop Question Answering
- Retrieval-Augmented Generation
- Large Language Models
- Supervised Fine-tuning
- Novel Knowledge
- Knowledge Injection Mechanisms
Best for: AI Engineer, Research Scientist, AI Architect, AI Scientist, Machine Learning Engineer, NLP Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.