Data-Efficient Adaptation of LLMs via Attention Head Reweighting
Summary
Introduces Attention Head Reweighting (AHR), a data-efficient method for adapting LLMs to text classification tasks by learning a single scalar per attention head, drastically reducing trainable parameters while outperforming LoRA in limited data settings.
View Cached Full Text
Cached at: 07/16/26, 04:22 AM
# Data-Efficient Adaptation of LLMs via Attention Head Reweighting Source: [https://arxiv.org/abs/2607.13425](https://arxiv.org/abs/2607.13425) [View PDF](https://arxiv.org/pdf/2607.13425) > Abstract:Learning effectively from limited data is critical in domains like security where labeled examples are scarce\. Large language models \(LLMs\) have demonstrated some capabilities for data\-efficient learning, especially through parameter\-efficient adaptation methods, but continue to struggle when faced with few samples for difficult tasks\. To meet this challenge, we propose Attention Head Reweighting \(AHR\), a data\-efficient method that adapts LLMs to new text\-classification tasks by learning only a single scalar per attention head\. This drastically reduces the number of parameters that need to be learned by making use of the functional specialization of individual attention heads\. Experiments on diverse open\-source text classification datasets show that AHR can outperform standard baselines like LoRA when learning from limited samples, despite having 200\-1000x fewer trainable parameters, as our AHR only modifies ~0\.0001% of the model's parameters\. In addition, our learned weights are easy to interpret and can be analyzed to better understand the mechanisms and attention heads responsible for in\-context learning abilities in LLMs\. ## Submission history From: Tuomas Oikarinen \[[view email](https://arxiv.org/show-email/34825926/2607.13425)\] **\[v1\]**Wed, 15 Jul 2026 04:03:24 UTC \(1,105 KB\)
Similar Articles
Low-Rank Attention Residuals
This paper introduces Low-Rank Attention Residuals (LR-AttnRes) for LLMs, which decouple routing from representation by using low-dimensional keys for depth-wise attention, improving performance while reducing FLOPs.
Dynamic Linear Attention
DLA introduces adaptive state merging and capacity-bounded memory modeling for multi-state linear attention, improving long-context LLM performance.
Fine-tuning Multi-modal LLMs with ART: Art-based Reinforcement Training
ART (Art-based Reinforcement Training) enables parameter-efficient fine-tuning of frozen multimodal LLMs by optimizing raw visual input via gradient backpropagation, achieving performance comparable to LoRA while supporting pre-compiled computational graphs for high-throughput engines like vLLM.
@jbhuang0604: LoRA, low-rank adaptation, is arguably the most popular parameter-efficient fine-tuning method for LLMs. But how does i…
LoRA (low-rank adaptation) is the most popular parameter-efficient fine-tuning method for LLMs. This video introduces how LoRA and its variants (LoRA+, QLoRA, VeRA, DoRA) work.
Parallax: Parameterized Local Linear Attention for Language Modeling
Introduces Parallax, a parameterized local linear attention mechanism with hardware-aware optimization that improves LLM pretraining efficiency and performance, achieving Pareto improvements at 0.6B and 1.7B scales.