🤖 AI Summary
Large multimodal models (LMMs) suffer from poor generalization and high sensitivity to in-context demonstration (ICD) configurations in in-context learning (ICL). To address this, we propose MimIC—a lightweight, learnable offset method that models query-dependent dynamic offsets within each multi-head attention layer of Transformer-based LMMs. Its core innovations comprise four enhancements: (i) injecting offset vectors after attention outputs, (ii) employing head-wise independent parameterization, (iii) dynamically scaling offset magnitudes via query vectors, and (iv) introducing an inter-layer feature alignment loss. Evaluated on Idefics-9b and Idefics2-8b-base, MimIC achieves state-of-the-art performance on VQAv2, OK-VQA, and image captioning tasks—outperforming existing offset-based ICL methods while demonstrating superior stability and cross-task generalization. The implementation is publicly available.
📝 Abstract
Recently, In-context Learning (ICL) has become a significant inference paradigm in Large Multimodal Models (LMMs), utilizing a few in-context demonstrations (ICDs) to prompt LMMs for new tasks. However, the synergistic effects in multimodal data increase the sensitivity of ICL performance to the configurations of ICDs, stimulating the need for a more stable and general mapping function. Mathematically, in Transformer-based models, ICDs act as ``shift vectors'' added to the hidden states of query tokens. Inspired by this, we introduce Mimic In-Context Learning (MimIC) to learn stable and generalizable shift effects from ICDs. Specifically, compared with some previous shift vector-based methods, MimIC more strictly approximates the shift effects by integrating lightweight learnable modules into LMMs with four key enhancements: 1) inserting shift vectors after attention layers, 2) assigning a shift vector to each attention head, 3) making shift magnitude query-dependent, and 4) employing a layer-wise alignment loss. Extensive experiments on two LMMs (Idefics-9b and Idefics2-8b-base) across three multimodal tasks (VQAv2, OK-VQA, Captioning) demonstrate that MimIC outperforms existing shift vector-based methods. The code is available at https://github.com/Kamichanw/MimIC.