Ensembles of Low-Rank Expert Adapters
Yinghao Li, Vianne Gao, Chao Zhang, MohamadAli Torkamani
TL;DR
This work tackles the problem of conflicting gradient directions during fine-tuning of large language models on diverse data. It introduces ELREA, an ensemble of low-rank adapters where a base LoRA adapter is first trained on full data, then data points are clustered by gradient directions using gradient features, random-projected to $d_{proj}$, and per-cluster LoRA experts are trained. At inference, predictions from the base adapter and the cluster experts are weighted by the input's gradient similarity to cluster centroids, with weights computed via standardized cosine similarities, i.e. $w_c = \mathrm{softmax}(\cos'(oldsymbol{\delta}_{test}, \bar{\boldsymbol{\delta}}_c))$, and the next-token logits are combined accordingly. Empirically, ELREA outperforms full-dataset LoRA baselines and other ensemble methods across domain-specific tasks, with ablations confirming the effectiveness of gradient-based clustering and routing, though at higher inference cost relative to single-model baselines.
Abstract
The training and fine-tuning of large language models (LLMs) often involve diverse textual data from multiple sources, which poses challenges due to conflicting gradient directions, hindering optimization and specialization. These challenges can undermine model generalization across tasks, resulting in reduced downstream performance. Recent research suggests that fine-tuning LLMs on carefully selected, task-specific subsets of data can match or even surpass the performance of using the entire dataset. Building on these insights, we propose the Ensembles of Low-Rank Expert Adapters (ELREA) framework to improve the model's capability to handle diverse tasks. ELREA clusters the training instructions based on their gradient directions, representing different areas of expertise and thereby reducing conflicts during optimization. Expert adapters are then trained on these clusters, utilizing the low-rank adaptation (LoRA) technique to ensure training efficiency and model scalability. During inference, ELREA combines predictions from the most relevant expert adapters based on the input data's gradient similarity to the training clusters, ensuring optimal adapter selection for each task. Experiments show that our method outperforms baseline LoRA adapters trained on the full dataset and other ensemble approaches with similar training and inference complexity across a range of domain-specific tasks.
