Overview
- Title: A survey of parameter-efficient fine-tuning techniques for audio foundation models
- Author: Prasanth Yadla
- Journal: International Journal of Speech Technology (Springer)
- DOI: 10.1007/s10772-025-10245-6
Executive Summary
Modern audio and speech processing has been revolutionized by massive Audio Foundation Models (AFMs)—such as Wav2Vec 2.0, HuBERT, Whisper, and Data2Vec. While these multi-hundred-million (or billion) parameter models achieve state-of-the-art performance, full fine-tuning (updating all model weights) is computationally expensive, memory-intensive, and prone to issues like overfitting and catastrophic forgetting when applied to downstream tasks.
This paper provides a systematic survey of Parameter-Efficient Fine-Tuning (PEFT) techniques specifically adapted for audio foundation models. PEFT methods freeze the pre-trained backbone parameters and only update or add a tiny fraction (often $<1\%$) of parameters, enabling fast, lightweight, and multi-task adaptation across diverse speech and audio applications.
Key Highlights & Core Themes
1. The Core Problem with Full Fine-Tuning in Audio
- Resource Bottlenecks: Storing separate full-model copies for every downstream task (e.g., Automatic Speech Recognition, Speech Emotion Recognition, Speaker Verification) requires prohibitive VRAM and storage.
- Data Scarcity: Audio domain datasets for niche downstream tasks are often small. Updating all weights causes models to overfit or forget their rich, pre-trained audio representations.
2. Taxonomy of Audio PEFT Approaches
The survey categorizes PEFT strategies applied to audio architecture into three primary structural paradigms:
- Addition-Based Methods (Adapters & Prompts):
- Bottleneck Adapters / ConvAdapters: Inserting tiny feed-forward or 1D-convolutional layers between Transformer blocks.
- Prompt & Prefix Tuning: Prepending continuous trainable vectors to the input audio features or attention keys/values within self-attention modules.
- Reparameterization-Based Methods (LoRA & Variants):
- Low-Rank Adaptation (LoRA): Injecting trainable rank-decomposition matrices into self-attention projection weights (e.g., Query/Value projections). This avoids latency during inference because low-rank weights can be merged back into frozen weights.
- Specification / Selective-Based Methods:
- Tuning only specific subsets of existing parameters (e.g., layer normalization parameters, bias terms, or specific encoder layers) while keeping matrix weights frozen.
3. Downstream Audio & Speech Tasks Evaluated
The paper reviews how these PEFT techniques perform across classic and emerging speech/audio tasks:
- Speech Recognition (ASR): Transcribing speech into text using models like Whisper or Wav2Vec 2.0.
- Speech Emotion Recognition (SER) & Intent Classification: Understanding paralinguistic and semantic acoustic cues.
- Speaker Identification / Verification: Extracting fine-grained speaker embeddings.
- Sound Event Detection (SED) & Audio Captioning: Classifying non-speech environmental sounds.
4. Key Survey Findings & Insights
- Near-Parity Performance: In many audio understanding tasks, PEFT techniques (especially LoRA and ConvAdapters) achieve 95%–100% of full fine-tuning performance while tuning less than 1% of the model’s total parameters.
- Robustness to Overfitting: By maintaining frozen pre-trained weights, PEFT methods retain broad acoustic priors, showing superior generalization when fine-tuning on low-resource or noisy speech data.
- Efficient Multi-Task Serving: Servicing multiple audio applications simply requires loading a single frozen base model into GPU memory and dynamically swapping tiny task-specific PEFT weight adapters.
5. Future Directions & Open Challenges
- Standardizing unified speech evaluation benchmarks (e.g., SURE benchmark setups) for PEFT.
- Expanding PEFT techniques to streaming/real-time low-latency audio applications.
- Combining PEFT with parameter quantization (e.g., QLoRA) to allow foundation model deployment on edge devices and low-power hardware.
Citation Format for this Article (APA 7th)
Yadla, P. (2025). A survey of parameter-efficient fine-tuning techniques for audio foundation models. International Journal of Speech Technology. https://doi.org/10.1007/s10772-025-10245-6
References:
- Baevski, A., Schneider, S., & Auli, M. (2020). vq-wav2vec: Self-supervised learning of discrete speech representations. https://arxiv.org/abs/1910.05453
- Baevski, A., Zhou, H., Mohamed, A., & Auli, M. (2020). wav2vec 2.0: A framework for self-supervised learning of speech representations. https://arxiv.org/abs/2006.11477
- Advanced Concepts in Deep Learning Prasanth Y ..