Localize-and-Stitch: Efficient Model Merging via Sparse Task Arithmetic
Yifei He, Yuzheng Hu, Yong Lin, Tong Zhang, Han Zhao
TL;DR
The paper tackles interference in global model merging of multiple finetuned models by introducing Localize-and-Stitch, which localizes essential finetuning skills into tiny sparse regions (about $1\%$ of parameters) and stitches them back onto the pretrained base. Localization uses a learnable mask $\gamma_i=\sigma(S_i)$ optimized with an $L_1$-regularized objective to preserve task performance, yielding interpretable, minimal regions that minimize cross-task conflicts. Stitching aggregates masked task vectors so that $\theta_{\text{merged}}=\theta_{\text{pre}}+\sum_i (\gamma_i'\odot\tau_i)$, with overlaps handled by averaging and no hyperparameter tuning, enabling data-efficient merging and straightforward continual learning. Empirically, the method achieves state-of-the-art or competitive multi-task performance across NLP, vision, and decoder-based language models, even in dataless settings, and enables substantial model compression (down to ~1% of original storage) while preserving pretrained knowledge and supporting scalable skill composition with minimal storage and compute.
Abstract
Model merging offers an effective strategy to combine the strengths of multiple finetuned models into a unified model that preserves the specialized capabilities of each. Existing methods merge models in a global manner, performing arithmetic operations across all model parameters. However, such global merging often leads to task interference, degrading the performance of the merged model. In this work, we introduce Localize-and-Stitch, a novel approach that merges models in a localized way. Our algorithm works in two steps: i) Localization: identify tiny ($1\%$ of the total parameters) localized regions in the finetuned models containing essential skills for the downstream tasks, and ii) Stitching: reintegrate only these essential regions back into the pretrained model for task synergy. We demonstrate that our approach effectively locates sparse regions responsible for finetuned performance, and the localized regions could be treated as compact and interpretable representations of the finetuned models (tasks). Empirically, we evaluate our method on various vision and language benchmarks, showing that it outperforms existing model merging methods under different data availability scenarios. Beyond strong empirical performance, our algorithm also facilitates model compression and preserves pretrained knowledge, enabling flexible and continual skill composition from multiple finetuned models with minimal storage and computational overhead. Our code is available at https://github.com/uiuctml/Localize-and-Stitch.
