Remember-R1: Three Process Rewards That Curb Visual Forgetting in Long Multimodal Reasoning

Remember-R1: Mitigating Long-Context Visual Forgetting through Reinforcement Learning

Jianmin Chen, Jiaqi Tang, Wei Wei, Xiaogang Xu, Jiafei Wu, Zhe Liu, Qianzhou Wang, Yingying Yan, Botong Geng, Yuyang Xia, Lei Zhang, Qifeng Chen

cs.CV

2026-08-02

Long multimodal reasoning forgets the image. Remember-R1 adds three process rewards on the original trajectory without changing inference; MathVista +13.6 on Qwen2.5-VL 3B.

What problem this solves

Multimodal LLMs increasingly lean on long chain-of-thought to handle hard tasks, reasoning step by step before answering. As the chain grows, a subtle failure sets in: attention to the image decays as generation proceeds, and later tokens get driven more by the text the model has already produced than by the image. The paper calls this visual forgetting. A model counting geometric shapes can hallucinate a blue sphere that is not there and count from that phantom midway through its reasoning.

Two existing fixes each fall short. One re-injects the image or its features back into the context during inference; it recovers visual evidence but pays for it in extra compute and memory, and it fragments the reasoning. The other inserts visual-claim proxy interactions during training, but the supervision lands on those added proxies rather than on the model's own reasoning trajectory.

Remember-R1 takes a third path: leave inference untouched and apply process-level supervision directly on the trajectory the model itself generates.

Method

The framework trains with GRPO; the substance is in the reward design. Alongside a standard answer-correctness reward racc, it adds three process-level rewards, each watching a different facet of visual evidence.

Training data extends ViRL39K with annotations: Qwen-VL-Max extracts a set of visual keywords per image (object categories, colors, quantities, spatial phrases such as "leftmost bar"), and bounding boxes mark the regions that carry evidence for the question. The answer is used only during annotation and is never shown to the policy. After manual verification this yields 38,657 annotated samples.

The three rewards divide the labor:

The total reward is the sum of the four terms. The authors back the three-way decomposition with benchmark-level evidence: correct responses match more visual keywords on average (20.76 vs 12.50), show smaller early-to-late attention decline, and hold stronger attention on key regions.

Results

Evaluated on Qwen2.5-VL-3B and 7B across seven benchmarks: reasoning (MathVision, MathVista, LogicVista), general multimodal (MMVet, MMMB, MMStar), and perception (RealWorldQA).

benchmarkbase 3Bours 3Bbase 7Bours 7B
MathVision20.9024.6823.2026.64
MathVista51.9065.5062.3069.80
LogicVista40.4942.9547.2649.05
MMVet52.9863.4459.4472.37
MMStar54.7359.5463.9364.73
RealWorldQA65.2265.8869.2869.67

Over the matching Qwen2.5-VL base, MathVista is the biggest gain: +13.6 on 3B and +7.5 on 7B. The 7B model reaches 72.37 on MMVet, ahead of methods built specifically to mitigate visual forgetting, DeepSketcher-7B (69.54) and TVC-7B (60.41).

Ablations show that removing any reward degrades results, and without rvoc the model drifts toward more abstract, text-driven reasoning. A GRPO variant trained only on racc reaches just 60.20 on MathVista versus 65.50 for the full method, evidence that answer-level supervision alone does not shape the process. Attention-curve analysis shows Remember-R1's attention to the image decays more slowly through the middle and late stages.

Why it matters

Two things matter for practitioners working on visual reasoning. First, inference is untouched: a trained model deploys as a normal model with no tax from re-injecting the image, so adoption is straightforward. Second, it turns visual forgetting from an observed phenomenon into an optimizable training signal, putting attention weights directly into the reward. The idea is clean and transfers to other long-chain tasks that need sustained grounding in external evidence (documents, charts, video).

The honest caveat: against other 7B methods that also target visual forgetting, Remember-R1's margin is thin (69.80 vs 69.10 on MathVista), closer to a steady improvement than a decisive win.

Limitations

The paper has no dedicated limitations section; these are implicit issues plus what stood out on reading:

Terms

Source

What people are saying

Related papers

All paper explainers