Vision-Language Fine-Tuning Damages LLM Text Capabilities
Key takeaways
- Fine-tuning LLMs into VLMs can degrade their text capabilities, especially for rule-based tasks.
- "Attention-sink corruption" is identified as a key cause of this degradation.
- "Sink Strength" is a new diagnostic tool to predict text capability loss before VLM training.
- Current mitigation strategies like post-pretraining QK-RMSNorm or weight merging are largely ineffective.
Who benefits
Summary
Fine-tuning large language models (LLMs) into vision-language models (VLMs) often degrades their original text capabilities, particularly for tasks requiring strict output rules. This degradation is linked to "attention-sink corruption," where VL fine-tuning perturbs early attention-sink positions crucial for text processing.
Why it matters
Professionals developing VLMs need to be aware that adapting LLMs can compromise their text reasoning abilities, necessitating careful selection of base models and potentially new fine-tuning strategies to preserve critical functionalities.
How to implement this in your domain
- 1Before fine-tuning an LLM into a VLM, use "Sink Strength" to assess the base model's susceptibility to text capability loss.
- 2Prioritize LLM backbones that demonstrate higher Sink Strength for VLM adaptation to minimize degradation.
- 3Develop or explore fine-tuning strategies that specifically protect attention-sink positions during vision-language adaptation.
- 4Implement rigorous evaluation metrics for both vision-language and pure text capabilities post-adaptation to ensure balanced performance.
Original post by Minsik Choi, Geewook Kim, Young Geun Kim
"arXiv:2609.00746v1 Announce Type: new Abstract: Fine-tuning a pretrained LLM into a vision-language model (VLM) can erode the backbone's text capability, with the damage concentrated on tasks that require following exact output rules, such as instruction following, chain-of-thoug…"
View on XOriginally posted by Minsik Choi, Geewook Kim, Young Geun Kim on X · view source
Want to go deeper?
Turn these trends into skills with Learnijoy's hands-on AI & tech courses.
Explore coursesMore in AI Research
Subspace Levenberg-Marquardt Algorithms Boost Neural Network Training
This research evaluates subspace Levenberg-Marquardt (LM) algorithms, such as KSLM and HSLM, for training neural networks on regression and classification tasks. These methods address the high computational and memory costs of classical LM, offering more efficient second-order optimization compared to first-order methods like SGD and Adam.
Neural Networks Show Varied Conceptual Separation Internally
A study examined "conceptual separation" in CNNs and LLMs, analyzing how internal activations represent concepts. It found that CNNs form coherent representations for familiar concepts, while LLMs show clear separation for distinct domains but collapse distinctions for ambiguous topics.
FCCA Boosts Low-Resource LLM Adaptation with Fewer Parameters
Researchers introduced Frozen-Core Cross-Covariance Adaptation (FCCA), a new parameter-efficient fine-tuning method that significantly improves LLM performance with a minimal trainable parameter budget. FCCA achieves results comparable to LoRA and DoRA while optimizing orders of magnitude fewer parameters by carefully selecting fixed core coordinates.