ICLR 2026
Co-LoRA
Collaborative Model Personalization on
Heterogeneous Multi-Modal Clients
1KU Leuven 2Seoul National University 3Sungkyunkwan University
The setup
Personalize different multimodal models—together.
Each client learns its own stream of private multimodal tasks and may use a different model architecture. A central server coordinates knowledge sharing so every client can improve its own model without requiring identical data, tasks, or model dimensions.
The problem
Standard LoRA cannot be averaged across heterogeneous models.
LoRA’s input and output matrices inherit each model’s hidden dimension. When clients use different architectures, those matrices no longer have compatible shapes. Co-LoRA moves collaboration into the shared low-rank space instead.
The core idea
Train what is compatible. Align what is not.
Co-LoRA inserts a dimension-invariant matrix P and vector Q between the original LoRA projections. The model-specific A and B stay frozen; only P and Q are optimized and exchanged.
Dimension-invariant sharing
P ∈ ℝr×r and Q ∈ ℝr depend only on the common LoRA rank r, not on model width.
Compatible initialization
Public samples align A in the shared rank space with MSE, then align width-dependent B through CCA.
Relative-depth matching
Models are split into the same number of blocks. Co-LoRA modules at corresponding relative depths are aggregated.
Key results
Collaboration improves both personalization and transfer.
FedMosaic combines two complementary ideas:
- RELATask-relevance-aware aggregation for data heterogeneity.
- Co-LoRADimension-invariant adapter sharing for model heterogeneity.
Bars show mean Alast (%) in the method order reported by the paper. Error estimates and AAUC are available in the full tables.
Better personalization and transfer
Strong performance on both clients’ own data (Self) and other clients’ data (Others).
Sharing works across model families
Co-LoRA extends beyond size heterogeneity to cross-family collaboration.
Small and large models both benefit
Knowledge transfer remains useful across different hidden widths—not only between identical clients.
See the paper for confidence intervals, AUC metrics, full ablations, and additional settings.
Want the details?
Read the full paper.
Full formulations, alignment derivations, benchmark design, ablations, and additional results are available in the paper.