Instead of Feeding an Image to the Model, What If You Rotated the Model Toward the Image?
Summary
A CVPR 2026 paper from the Institute of Automation, Chinese Academy of Sciences introduces ROSE (Rotation-Only Shifted Encoder), a novel method for integrating visual information into multimodal Large Language Models. Unlike standard approaches that append hundreds or thousands of visual tokens to the input sequence, ROSE directly modifies the LLM's weights. It generates an orthogonal rotation matrix from image features and applies it to the projection weights of every LLM layer, effectively "turning" the model towards the image. This orthogonal transformation preserves the model's pre-trained semantic structure. The VRMG module creates dedicated rotation matrices for each linear projection, using cross-attention with a vision encoder like SigLIP2 and a Cayley transform. ROSE maintains accuracy comparable to Qwen2.5-VL-7B across 12 multimodal benchmarks while reducing FLOPs by 80.7% and inference latency by 56.4%. Crucially, it preserves pure-language performance on 5 benchmarks, validating its non-disruptive approach. The method currently has a tradeoff in fine-grained visual expressiveness and is limited to still images.
Key takeaway
For Machine Learning Engineers developing multimodal LLMs and facing high computational costs or degraded language performance due to extensive visual token inputs, you should investigate weight-based rotation methods like ROSE. This approach demonstrates significant efficiency gains, cutting FLOPs by 80.7% and latency by 56.4%, while preserving core language abilities. Consider exploring this paradigm shift to integrate visual data more efficiently, but be mindful of its current limitations to still images and potential tradeoffs in fine-grained visual expressiveness.
Key insights
Instead of input tokens, ROSE rotates LLM weights with image features, preserving language priors and boosting efficiency.
Principles
- Orthogonal rotations maintain semantic structure.
- Weight modification can reduce input sequence length.
- Multimodal integration need not degrade language priors.
Method
Image features generate orthogonal rotation matrices via VRMG and Cayley transform, which then multiply into each LLM layer's projection weights.
In practice
- Reduce multimodal inference FLOPs by 80.7%.
- Cut inference latency by 56.4%.
- Preserve pure-language model performance.
Topics
- Multimodal LLMs
- Weight-based Integration
- Orthogonal Rotation
- Inference Efficiency
- Vision-Language Models
- Model Compression
Best for: Research Scientist, AI Engineer, Computer Vision Engineer, AI Scientist, Machine Learning Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by LLM on Medium.