SARA: Singular-Value Based Adaptive Low-Rank Adaption
Jihao Gu, Shuai Chen, Zelin Wang, Yibo Zhang, Ping Gong
TL;DR
This work targets parameter-efficient fine-tuning for large pre-trained models by uncovering layer-specific intrinsic ranks via singular-value decomposition and using this insight to drive adaptive low-rank adaptations. The authors introduce SARA, which computes a per-layer rank k from the pre-trained weights and adds a truncated singular-value matrix in parallel to the base weights, thereby enhancing LoRA without runtime overhead. They further propose Mo-SARA, a Mixture-of-SARA approach that trains multiple parallel singular-value sets with a lightweight router to massively reduce trainable parameters while preserving performance. Across 15 datasets spanning math reasoning, commonsense inference, and end-to-end tasks, SARA and Mo-SARA demonstrate superior or competitive accuracy with substantially fewer trainable parameters, addressing inter-layer importance and achieving efficient, adaptive fine-tuning.
Abstract
With the increasing number of parameters in large pre-trained models, LoRA as a parameter-efficient fine-tuning(PEFT) method is widely used for not adding inference overhead. The LoRA method assumes that weight changes during fine-tuning can be approximated by low-rank matrices. However, the rank values need to be manually verified to match different downstream tasks, and they cannot accommodate the varying importance of different layers in the model. In this work, we first analyze the relationship between the performance of different layers and their ranks using SVD. Based on this, we design the Singular-Value Based Adaptive Low-Rank Adaption(SARA), which adaptively finds the rank during initialization by performing SVD on the pre-trained weights. Additionally, we explore the Mixture-of-SARA(Mo-SARA), which significantly reduces the number of parameters by fine-tuning only multiple parallel sets of singular values controlled by a router. Extensive experiments on various complex tasks demonstrate the simplicity and parameter efficiency of our methods. They can effectively and adaptively find the most suitable rank for each layer of each model.
