Conference Paper
Large Language Models

Parameter-efficient fine-tuning of large-scale pre-trained language models

Ning Ding, Yujia Qin, Guang Yang, Fu Wei, Zonghan Yang, Yusheng Su, Shengding Hu, Yulin Chen, Chi-Min Chan, Weize Chen, Jing Yi, Weilin Zhao, Xiaozhi Wang, Zhiyuan Liu, Haitao Zheng, Jianfei Chen, Y. Liu, Jie Tang, Juanzi Li, Maosong Sun
January 1, 2023Nature Machine Intelligence1,197 citations

1.2k

Citations

38

Influential Citations

Nature Machine Intelligence

Venue

2023

Year

Abstract

With the prevalence of pre-trained language models (PLMs) and the pre-training–fine-tuning paradigm, it has been continuously shown that larger models tend to yield better …

Analysis

Why This Paper Matters

As large language models (LLMs) grow to hundreds of billions of parameters, full fine-tuning becomes prohibitively expensive in terms of memory, compute, and storage. This paper provides a timely and comprehensive survey of parameter-efficient fine-tuning (PEFT) methods, which have become essential for democratizing access to state-of-the-art PLMs. By systematically categorizing approaches and evaluating their trade-offs, the authors offer a practical roadmap for researchers and engineers who need to adapt large models without massive resources.

The paper's significance is underscored by its high citation count (1197) and publication in Nature Machine Intelligence, reflecting its role as a definitive reference in the field. It addresses a critical bottleneck in the adoption of PLMs: the cost of fine-tuning. Without PEFT, each downstream task requires storing a full copy of the model, which is infeasible for many organizations. This survey has directly influenced the development of popular libraries like Hugging Face PEFT and has guided the design of efficient adaptation methods in both academia and industry.

Technical Contributions

The paper introduces a clear taxonomy that organizes PEFT methods into three categories:

  • Additive methods: Insert small trainable modules (e.g., adapters, prompt vectors) while keeping the base model frozen.
  • Selective methods: Fine-tune only a subset of existing parameters (e.g., bias terms in BitFit).
  • Reparameterization methods: Decompose weight updates into low-rank matrices (e.g., LoRA) or use hypernetworks.

Key innovations highlighted include:

  • LoRA (Low-Rank Adaptation): Achieves high efficiency by learning rank-decomposition matrices for attention weights, reducing trainable parameters by 10,000x on GPT-3 175B.
  • Prefix Tuning: Prepends learnable continuous vectors to transformer layers, enabling task adaptation without modifying model weights.
  • Adapter layers: Thin bottleneck networks inserted between transformer layers, offering modularity and easy task switching.

The paper also provides a unified framework to compare these methods, analyzing factors like inference latency, memory footprint, and scalability to very large models.

Results

The survey aggregates results from multiple benchmarks:

  • On GLUE, PEFT methods (LoRA, adapters) achieve 95-99% of full fine-tuning accuracy while using only 0.1-2% of trainable parameters.
  • On SuperGLUE, prefix-tuning with T5-11B reaches 89.2% accuracy, within 0.5% of full fine-tuning, with 1000x fewer parameters.
  • BitFit, which only tunes bias terms, retains 93% of BERT-Large performance on SQuAD while updating only 0.08% of parameters.
  • Memory savings are substantial: LoRA reduces GPU memory usage by 3x for GPT-3 175B compared to full fine-tuning.

Significance

This paper has fundamentally shaped how the AI community approaches model adaptation. It established PEFT as a standard practice for deploying large PLMs, enabling applications in low-resource settings, on-device AI, and multi-task serving. The taxonomy and analysis have guided subsequent work on PEFT for vision, multimodal, and reinforcement learning models. By lowering the barrier to fine-tuning, this work accelerates research and deployment of customized AI systems across industries, from healthcare to finance. The paper's impact is evident in the widespread adoption of LoRA and adapters in production systems and open-source ecosystems.