CVPR 2025Highlight

Meta-Learning Hyperparameters for Parameter Efficient Fine-Tuning

Zichen Tian, Yaoyao Liu, Qianru Sun

Singapore Management University · University of Illinois Urbana-Champaign

TL;DR

Abstract

Training large foundation models from scratch for domain-specific applications is almost impossible due to data limits and long-tailed distributions -- taking remote sensing (RS) as an example. Fine-tuning natural image pre-trained models on RS images is a straightforward solution. To reduce computational costs and improve performance on tail classes, existing methods apply parameter-efficient fine-tuning (PEFT) techniques, such as LoRA and AdaptFormer. However, we observe that fixed hyperparameters -- such as intra-layer positions, layer depth, and scaling factors, can considerably hinder PEFT performance, as fine-tuning on RS images proves highly sensitive to these settings. To address this, we propose MetaPEFT, a method incorporating adaptive scalers that dynamically adjust module influence during fine-tuning. MetaPEFT dynamically adjusts three key factors of PEFT on RS images: module insertion, layer selection, and module-wise learning rates, which collectively control the influence of PEFT modules across the network. We conduct extensive experiments on three transfer-learning scenarios and five datasets in both RS and natural image domains. The results show that MetaPEFT achieves state-of-the-art performance in cross-spectral adaptation, requiring only a small amount of trainable parameters and improving tail-class accuracy significantly.

Method

MetaPEFT framework: adaptive scalers on PEFT modules are meta-learned by bi-level optimization to control insertion, depth and learning rate
MetaPEFT framework. Adaptive scalers attached to each PEFT module are meta-learned via bi-level optimization, jointly controlling module insertion, layer selection and module-wise learning rates.

Key Results

MethodIN21K→iNat2018 TailIN21K→DOTA TailSatMAE→SAR TailAvg-tailAvg
Adapter77.790.675.881.3776.85
Adapter + MetaPEFT78.190.776.081.6076.99
AdaptFormer78.090.176.781.6076.70
AdaptFormer + MetaPEFT78.290.176.481.5776.60
LoRA78.590.772.180.4376.78
LoRA + MetaPEFT (ours)79.391.474.281.6377.91

Table 4 of the paper: tail-class accuracy (%) of additive PEFT methods with and without MetaPEFT across three transfer scenarios. Avg-tail is the mean tail accuracy; Avg is the macro-average over all class splits.

Citation

@InProceedings{Tian_2025_CVPR,
    author    = {Tian, Zichen and Liu, Yaoyao and Sun, Qianru},
    title     = {Meta-Learning Hyperparameters for Parameter Efficient Fine-Tuning},
    booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
    month     = {June},
    year      = {2025},
    pages     = {23037-23047}
}

This work is referred to as MetaPEFT in the paper and as MetaLoRA / Meta LoRA in the code release; all names denote the same CVPR 2025 Highlight paper by Tian, Liu and Sun. Please cite it with the BibTeX above.

Links