ICLR2025

Fine-tuning with Reserved Majority for Noise Reduction

Shuyang Jiang, Yusheng Liao, Ya Zhang, Yanfeng Wang, Yu Wang

摘要

Parameter-efficient fine-tuning (PEFT) has revolutionized supervised fine-tuning, where LoRA and its variants gain the most popularity due to their low training costs and zero inference latency. However, LoRA tuning not only injects knowledgeable features but also noisy hallucination during fine-tuning, which hinders the utilization of tunable parameters with the increasing LoRA rank. In this work, we first investigate in-depth the redundancies among LoRA parameters with substantial empirical studies. Aiming to resemble the learning capacity of high ranks from the findings, we set up a new fine-tuning framework, Parameter-Redundant Fine-Tuning (PREFT), which follows the vanilla LoRA tuning process but is required to reduce redundancies before merging LoRA parameters back to pre-trained models. Based on this framework, we propose Noise reduction with Reserved Majority (NORM), which decomposes the LoRA parameters into majority parts and redundant parts with random singular value decomposition. The major components are determined by the proposed Sim-Search method, specifically employing subspace similarity to confirm the parameter groups that share the highest similarity with the base weight. By employing NORM, we enhance both the learning capacity and benefits from larger ranks, which consistently outperforms both LoRA and other PREFT-based methods on various downstream tasks, such as general instruction tuning, math reasoning and code generation. Code is available at https://github.com/pixas/NoRM .