Attention Instruction: Amplifying Attention in the Middle via Prompting
Meiru Zhang, Zaiqiao Meng, Nigel Collier
TL;DR
This paper addresses position bias in retrieval-augmented generation, particularly the lost-in-the-middle effect where middle-context content is under-attended. It tests two prompting strategies—relative position words and absolute document indexes—to steer LLM attention in multi-document QA across five open-source models, finding no robust relative position awareness but clear benefits from absolute attention instructions using IDs or position words. Absolute instructions produce diagonal performance gains in attention-guided regions, with Llama-3 often strongest and results varying by document count (3 vs 9) and model. The study offers a practical, non-finetuning pathway to mitigate middle-content neglect in RAG, informing future work on larger contexts, diverse models, and more realistic document sets.
Abstract
The context window of large language models has been extended to 128k tokens or more. However, language models still suffer from position bias and have difficulty in accessing and using the middle part of the context due to the lack of attention. We examine the relative position awareness of LLMs and the feasibility of mitigating disproportional attention through prompting. We augment the original task instruction with $\texttt{attention instructions}$ that direct language models to allocate more attention towards a selected segment of the context. We conduct a comprehensive investigation on multi-document question answering task with both position-based and index-based instructions. We find that language models do not have relative position awareness of the context. Nevertheless, they demonstrate the capacity to adapt attention to a specific segment using matching indexes. Our analysis contributes to a deeper understanding of position bias in LLMs and provides a pathway to mitigate this bias by instruction, thus benefiting LLMs in locating and utilizing relevant information from retrieved documents in RAG applications.
