๐ค AI Summary
This work addresses efficient fine-tuning of large language models (LLMs). We propose Significance-Aware Sparse Parameter-Efficient Fine-Tuning (SPEFT), a novel paradigm distinct from mainstream low-rank or adapter-based approaches. SPEFT dynamically estimates parameter significance using gradient-based zero-cost metrics and employs a static binary mask to identify and lock the most significant sparse parameter subset for optimization. To our knowledge, this is the first systematic validation of zero-cost neural architecture searchโinspired significance measures in sparse PEFT, revealing that simple gradient magnitude outperforms more complex proxies. Crucially, SPEFT achieves stable performance superior to LoRA and other state-of-the-art PEFT methods while significantly reducing computational and memory overhead. Extensive experiments across diverse NLP tasks confirm its effectiveness and robustness. The implementation is publicly released, establishing a new benchmark for efficient, reproducible, and lightweight LLM fine-tuning.
๐ Abstract
Parameter-Efficient Fine-Tuning (PEFT) has gained prominence through low-rank adaptation methods like LoRA. In this paper, we focus on sparsity-based PEFT (SPEFT), which introduces trainable sparse adaptations to the weight matrices in the model, offering greater flexibility in selecting fine-tuned parameters compared to low-rank methods. We conduct the first systematic evaluation of salience metrics for SPEFT, inspired by zero-cost NAS proxies, and identify simple gradient-based metrics is reliable, and results are on par with the best alternatives, offering both computational efficiency and robust performance. Additionally, we compare static and dynamic masking strategies, finding that static masking, which predetermines non-zero entries before training, delivers efficiency without sacrificing performance, while dynamic masking offers no substantial benefits. Across NLP tasks, a simple gradient-based, static SPEFT consistently outperforms other fine-tuning methods for LLMs, providing a simple yet effective baseline for SPEFT. Our work challenges the notion that complexity is necessary for effective PEFT. Our work is open source and available to the community at [https://github.com/0-ml/speft].