LASER: A Corrective Lens for LVLMs via Visual Attention Preservation and Sink Suppression
LASER regulates visual attention via grounding and sink suppression rewards, effectively mitigating visual forgetting in LVLMs.
Key Findings
Methodology
This study systematically analyzes visual forgetting in LVLMs during long-horizon reasoning, identifying early attention decay and sink token over-concentration as key causes. LASER introduces two rewards—Visual Grounding and Sink Suppression—integrated into GRPO-based training to dynamically regulate attention trajectories and distributions. Experiments across 8 benchmarks demonstrate significant improvements over baselines, confirming the effectiveness of attention-aware training in maintaining visual grounding and reducing attention collapse.
Key Results
- On MMStar, LASER improves accuracy by 1.9%, and on visual perception tasks, by 5.7%, outperforming existing methods. Attention trajectory analysis shows sustained focus on visual evidence, reducing irrelevant attention shifts.
- Across datasets, LASER consistently outperforms competitors, especially in complex math and multimodal reasoning, with ablation studies confirming the importance of both rewards. Early-stage attention preservation significantly impacts final reasoning quality.
- Controlling attention at different stages reveals early attention retention is crucial, highlighting the importance of initial visual grounding for subsequent reasoning accuracy.
Significance
This work addresses a fundamental challenge in multimodal reasoning—visual forgetting—by providing a theoretically grounded, training-time attention regulation framework. It enhances model robustness, interpretability, and reliability, paving the way for more trustworthy AI systems in applications like autonomous driving, robotics, and complex decision-making. The approach offers a new paradigm for dynamic attention management, bridging the gap between static attention mechanisms and the demands of long-horizon reasoning tasks. Its success demonstrates that explicit attention regulation during training can substantially improve the stability and accuracy of large vision-language models, influencing future research directions in multimodal AI.
Technical Contribution
LASER innovatively combines two attention rewards—grounding preservation and sink suppression—within the GRPO reinforcement learning framework. It introduces a novel automatic sink token identification method based on activation patterns, enabling adaptive, data-driven attention regulation. This dual-reward mechanism ensures early-stage visual evidence is maintained while preventing attention collapse onto uninformative regions. The approach differs from prior post-hoc or heuristic methods by embedding dynamic, training-time attention control, offering theoretical guarantees and empirical robustness. It opens new avenues for integrating attention regulation into large-scale multimodal training pipelines, with potential extensions to other sequential reasoning tasks.
Novelty
This is the first comprehensive study revealing the dual pathology of early attention decay and sink token over-concentration in LVLMs during long reasoning. It proposes a unified, training-based attention regulation framework that explicitly addresses both issues via reward design, a significant departure from existing post-hoc or heuristic techniques. The automatic sink token detection based on activation analysis and the combined use of grounding and suppression rewards constitute key innovations, enabling models to maintain stable, focused visual attention throughout extended reasoning sequences.
Limitations
- The method relies on pre-trained models and reinforcement learning, which can be computationally intensive and sensitive to hyperparameter tuning. Its generalization to different architectures or modalities needs further validation.
- Reward parameters require manual adjustment, potentially limiting scalability and robustness across diverse tasks. The approach may still struggle in highly complex or noisy environments where visual cues are ambiguous.
- Despite improvements, some attention drift or omission may persist in extremely long or intricate reasoning scenarios, indicating room for further refinement of attention regulation strategies.
Future Work
Future research will explore adaptive, self-tuning reward mechanisms to reduce manual intervention, as well as extending the framework to multi-turn dialogues and real-world robotics. Integrating multi-task learning could further enhance generalization. Additionally, investigating the interplay between attention regulation and model interpretability may yield more transparent AI systems. Applying LASER to real-time perception tasks and multi-agent systems represents promising directions for broadening its impact.
AI Executive Summary
Large vision-language models (LVLMs) have revolutionized multimodal understanding, yet long-horizon reasoning exposes a critical weakness: visual forgetting. As models generate extended responses, their attention to visual evidence diminishes, leading to degraded reasoning accuracy and interpretability. Traditional solutions, such as post-hoc attention lifting or heuristic reminders, have limited effectiveness because they do not address the underlying dynamics of attention decay and over-concentration on uninformative regions.
This paper introduces LASER, a novel training framework that explicitly regulates the evolution and distribution of visual attention during inference. By integrating two carefully designed rewards—Visual Grounding Reward (Rvis) and Sink Suppression Reward (Rsupp)—LASER guides models to sustain focus on semantically salient visual tokens and suppress excessive attention on sink tokens. The core innovation lies in automatic sink token identification based on activation patterns, enabling adaptive, data-driven attention regulation. The method is built upon the Group Relative Policy Optimization (GRPO) algorithm, which optimizes the model's policy through reward comparison, ensuring attention remains aligned with task-relevant evidence.
Extensive experiments across eight benchmarks, including mathematical reasoning, logical inference, and visual perception, demonstrate that LASER consistently outperforms state-of-the-art baselines. Notably, it improves accuracy by 1.9% on MMStar and 5.7% on visual perception tasks, with ablation studies confirming the importance of both rewards. Attention trajectory analysis reveals that models trained with LASER maintain stable visual grounding throughout the reasoning process, significantly reducing attention drift and collapse.
The significance of this work extends beyond performance metrics. It offers a theoretically grounded, scalable approach to improving the robustness, interpretability, and reliability of multimodal reasoning systems. By explicitly controlling attention dynamics during training, LASER paves the way for more trustworthy AI in complex, real-world applications such as autonomous navigation, robotic perception, and intelligent decision support. Future directions include adaptive reward tuning, multi-task learning, and deployment in real-time systems, promising broader impacts in AI research and industry.
Deep Analysis
Background
The evolution of multimodal AI has seen large vision-language models (LVLMs) like Florence, LLaVA, and Flamingo achieving impressive feats in visual understanding and reasoning. These models leverage large-scale pretraining on image-text pairs, enabling tasks such as visual question answering, captioning, and complex reasoning. Early efforts focused on feature fusion and supervised fine-tuning, which improved multimodal alignment. However, as models scaled up, long-horizon reasoning revealed a critical flaw: visual attention diminishes over extended generation, leading to a phenomenon called visual forgetting. This results in models relying increasingly on language priors, causing hallucinations and reduced accuracy. Recent approaches incorporated reinforcement learning (RL), such as DeepSeek and VL-Rethinker, to optimize reasoning trajectories via reward signals. Despite progress, these methods do not explicitly regulate attention dynamics, especially early-stage grounding and sink token over-concentration, leaving a gap in robustness and interpretability.
Core Problem
The core challenge is that during long reasoning sequences, LVLMs exhibit a decline in visual attention, impairing their ability to ground responses in visual evidence. This manifests as early attention decay—where initial visual cues are lost—and sink token over-concentration—where attention collapses onto uninformative tokens, reducing the model’s focus on relevant regions. These issues cause errors to propagate autoregressively, degrading performance significantly. Addressing this requires a mechanism to maintain stable, task-relevant visual attention throughout the reasoning process, both temporally and spatially. Existing solutions lack a unified, training-based approach that dynamically adjusts attention, making models vulnerable to attention collapse and hallucinations in complex scenarios.
Innovation
LASER introduces a dual-reward system integrated into the RL training framework. The Visual Grounding Reward (Rvis) encourages the model to sustain high attention on semantically salient visual tokens, especially in early reasoning stages, by monitoring attention proportions over non-sink tokens. The Sink Suppression Reward (Rsupp) penalizes excessive attention on sink tokens—those that absorb disproportionate attention without semantic relevance—by identifying them through activation pattern analysis. This combination ensures early visual evidence is preserved and attention is redistributed away from uninformative regions. Unlike prior post-hoc or heuristic methods, LASER embeds dynamic attention regulation directly into training, offering a principled, scalable solution that improves both grounding stability and interpretability.
Methodology
- �� Build on the Group Relative Policy Optimization (GRPO) framework, which compares rewards within response groups to optimize policy.
- �� Identify sink tokens automatically based on hidden state activation patterns, using a threshold on activation magnitudes.
- �� Design Visual Grounding Reward (Rvis) to monitor the proportion of attention on non-sink tokens, penalizing decay below a peak level.
- �� Develop Sink Suppression Reward (Rsupp) to penalize disproportionate attention on sink tokens, measured by the ratio of sink to total attention.
- �� During training, combine these rewards with accuracy signals, adjusting model parameters to maintain early visual grounding and suppress sink attention.
- �� Fine-tune hyperparameters to balance the rewards, ensuring stable attention trajectories across extended sequences.
Experiments
Using the Qwen-2.5-VL-7B model, trained on 45K RL samples across diverse tasks, including math reasoning, logic, and perception, the authors evaluate LASER against multiple baselines like GPT5 and Gemini-2.5-Pro. Experiments involve ablation studies to isolate reward effects, attention trajectory analysis, and performance metrics such as accuracy improvements. The training employs hyperparameter tuning for reward weights, with evaluation on 8 benchmarks. Results show consistent accuracy gains, especially in complex tasks, with attention maps confirming sustained visual grounding. Ablation confirms both rewards are necessary for optimal performance, and analysis of attention dynamics demonstrates the effectiveness of the regulation mechanism.
Results
LASER achieves a 1.9% accuracy increase on MMStar and a 5.7% boost on visual perception tasks, outperforming prior methods. Attention trajectory plots reveal models trained with LASER maintain stable focus on visual evidence throughout reasoning, reducing drift and collapse. Ablation results show removing either reward diminishes gains, highlighting their combined importance. The method effectively mitigates early attention decay and sink token over-concentration, leading to more accurate and interpretable reasoning outputs.
Applications
This approach can be applied in autonomous vehicles, robotic perception, and multimodal question answering systems, where maintaining visual grounding is critical. It requires pre-trained models and reinforcement learning training pipelines, suitable for scenarios demanding high reliability and interpretability. Long-term, LASER’s principles could inform training strategies for other sequential decision-making models, enhancing robustness in real-world deployments.
Limitations & Outlook
The method depends on computationally intensive RL training and manual hyperparameter tuning, which may limit scalability. Its effectiveness in highly noisy or ambiguous environments remains to be tested. Additionally, in extremely long or complex sequences, some attention drift may still occur, indicating the need for further refinement of the regulation mechanism.
Plain Language Accessible to non-experts
想象你在看一本复杂的书,刚开始你会仔细关注每个重要的章节和细节,但随着阅读时间变长,你可能会开始忽略一些关键的内容,只盯着一些无关的细节。LVLMs也是如此,它们在长时间生成答案时,最开始会关注图片中的重要部分,但时间一长,注意力会逐渐偏离重点,变得散乱。LASER就像一个聪明的读书伙伴,能在你阅读的每个阶段提醒你关注最重要的内容,避免你被无关的细节迷惑。这样,你的理解会更清楚,回答也会更准确。这种机制帮助模型在长推理中保持专注,避免“走神”,最终得出更合理的结论。
ELI14 Explained like you're 14
想象你在玩一个超级难的拼图游戏,一开始你会仔细观察每一块拼图,确保把重要的边缘拼好,但玩得久了,你可能会开始盯着一些无关紧要的碎片,忘记了最关键的部分。LVLMs也是一样,它们在长时间推理时,刚开始会关注图片里的重要信息,但时间久了,注意力会变得散乱,偏离重点。LASER就像一个聪明的教练,能在你拼拼图的每个阶段提醒你关注最重要的部分,避免你被无关的碎片迷惑。这样,你的拼图会拼得更快更好,模型的推理也会更准确、更可靠。它让AI在长时间的推理中保持专注,不会“走神”,最终做出更聪明的判断。
Glossary
Visual Grounding Reward (视觉基础奖励)
一种激励机制,促使模型在推理过程中持续关注重要的视觉区域;技术上通过监控非Sink区域的注意力比例实现。
用于调节模型在推理中的视觉注意力轨迹,确保关注关键证据。
Sink Token (Sink标记)
在注意力分布中持续吸收过多注意力、但对推理无实质贡献的视觉标记;通过激活特征识别。
模型在训练中通过抑制Sink Token的注意力,避免偏离关键区域。
GRPO (Group Relative Policy Optimization)
一种强化学习优化算法,通过比较不同响应组的奖励,优化模型策略;在多模态训练中应用。
用于训练中调节模型的注意力动态,结合奖励机制实现目标。
Open Questions Unanswered questions from this research
- 1 如何在更复杂、多模态场景中自动调节奖励参数以适应不同任务需求,仍需深入研究。
- 2 模型在极端长序列推理中的表现机制及其注意力崩溃的根本原因,尚未完全理解。
Abstract
Large vision-language models (LVLMs) exhibit strong reasoning ability but suffer from visual forgetting during long-horizon decoding, where attention progressively drifts away from visual evidence. Existing methods largely treat this issue as a late-stage attention decay problem or attempt to mitigate it through heuristic reminders or post-hoc attention lifting. Through systematic empirical analysis, we find that performance degradation under visual forgetting is largely driven by two overlooked factors: early-stage attention decay disrupts evidence acquisition, and attention concentration on a subset of task-irrelevant visual sink tokens. Motivated by these insights, we propose LASER, a post-training framework that regulates both the visual attention trajectory and intra-visual token attention distribution during reasoning. Technically, LASER introduces two complementary rewards: a Visual Grounding Reward, which encourages the model to maintain attention on semantically salient visual tokens throughout decoding, and a Sink Suppression Reward, which penalizes excessive attention concentration on visual sink tokens. Together, these rewards preserve early-stage grounding while preventing attention collapse onto uninformative regions. Extensive experiments on eight benchmark datasets demonstrate that LASER consistently outperforms strong baselines, validating attention-aware training as an effective remedy for visual forgetting.