PERK: Long-Context Reasoning as Parameter-Efficient Test-Time Learning
Zeming Chen, Angelika Romanou, Gail Weiss, Antoine Bosselut
TL;DR
PERK reframes long-context reasoning as test-time learning by encoding lengthy inputs into a lightweight parameter-efficient memory adapter that is updated via gradient steps. It employs two nested meta-learning loops, with the inner loop updating a LoRA-based memory scratchpad and the outer loop optimizing reasoning performance using the encoded context. Across Needle-in-the-Haystack, open-domain multi-document QA, and Drops-in-the-Ocean benchmarks, PERK yields substantial performance gains over long-context finetuning baselines and demonstrates robust length extrapolation and positional bias resilience, while offering improved inference efficiency compared with prompt-based approaches. The work provides a scalable, practical solution for deploying long-context reasoning in real-world LLM applications, across diverse model scales and architectures.
Abstract
Long-context reasoning requires accurately identifying relevant information in extensive, noisy input contexts. Previous research shows that using test-time learning to encode context directly into model parameters can effectively enable reasoning over noisy information. However, meta-learning methods for enabling test-time learning are prohibitively memory-intensive, preventing their application to long context settings. In this work, we propose PERK (Parameter Efficient Reasoning over Knowledge), a scalable approach for learning to encode long input contexts using gradient updates to a lightweight model adapter at test time. Specifically, PERK employs two nested optimization loops in a meta-training phase. The inner loop rapidly encodes contexts into a low-rank adapter (LoRA) that serves as a parameter-efficient memory module for the base model. Concurrently, the outer loop learns to use the updated adapter to accurately recall and reason over relevant information from the encoded long context. Our evaluations on several long-context reasoning tasks show that PERK significantly outperforms the standard prompt-based long-context baseline, achieving average absolute performance gains of up to 90% for smaller models (GPT-2) and up to 27% for our largest evaluated model, Qwen-2.5-0.5B. In general, PERK is more robust to reasoning complexity, length extrapolation, and the locations of relevant information in contexts. Finally, we show that while PERK is memory-intensive during training, it scales more efficiently at inference time than prompt-based long-context inference.
