paper-with-me

Papers

Parameter-Efficient Transfer Learning of Audio Spectrogram Transformers

2023-12-06 · Umberto Cappellazzo, Daniele Falavigna, Alessio Brutti, Mirco Ravanelli

Parameter-efficient transfer learning (PETL) methods have emerged as a solid alternative to the standard full fine-tuning approach. They only train a few extra parameters for each downstream task, without sacrificing performance and dispensing with the issue of storing a copy of the pre-trained model for each task. For audio classification tasks, the Audio Spectrogram Transformer (AST) model shows impressive results. However, surprisingly, how to efficiently adapt it to several downstream tasks has not been tackled before. In this paper, we bridge this gap and present a detailed investigation of common PETL methods for the adaptation of the AST model to audio/speech tasks. Furthermore, we propose a new adapter design that exploits the convolution module of the Conformer model, leading to superior performance over the standard PETL approaches and surpassing or achieving performance parity with full fine-tuning by updating only 0.29% of the parameters. Finally, we provide ablation studies revealing that our proposed adapter: 1) proves to be effective in few-shot efficient transfer learning, 2) attains optimal results regardless of the amount of the allocated parameters, and 3) can be applied to other pre-trained models.

📄 PDF Abstract BibTeX arXiv:2312.03694

Code (1)

umbertocappellazzo/petl_ast 공식 구현 pytorch

Tasks

Audio ClassificationFew-Shot LearningTransfer Learning

Methods 이 논문이 사용한 방법론

Convolution A convolution is a type of matrix operation, consisting of a kernel, a small matrix of weights, that slides over input data performing element-wise multiplication with the…
Attention 설명 없음
Linear Layer A Linear Layer is a projection $\mathbf{XW + b}$.
Residual Connection 설명 없음
Dropout Dropout is a regularization technique for neural networks that drops a unit (along with connections) at training time with a specified probability $p$ (a common value is…
Softmax The Softmax output function transforms a previous layer's output into a vector of probabilities. It is commonly used for multiclass classification. Given an input vector $x$…
Multi-Head Attention 설명 없음
BPE Byte Pair Encoding, or BPE, is a subword segmentation algorithm that encodes rare and unknown words as sequences of subword units. The intuition is that various word…

Similar Papers 제목 키워드 기반

Efficient Fine-tuning of Audio Spectrogram Transformers via Soft Mixture of Adapters

2024-02-01 · Umberto Cappellazzo, Daniele Falavigna, Alessio Brutti

Mixture of Experts (MoE) architectures have recently started burgeoning due to their ability to scale model's capacity while maintaining the computational cost affordable. Furthermore, they can be applied to both Transfo…

Mixture-of-Expertsparameter-efficient fine-tuningState Space ModelsTransfer Learning

Audio Mamba: Pretrained Audio State Space Model For Audio Tagging

2024-05-22 · Jiaju Lin, Haoxuan Hu

Audio tagging is an important task of mapping audio samples to their corresponding categories. Recently endeavours that exploit transformer models in this field have achieved great success. However, the quadratic self-at…

Audio TaggingMambaState Space Models

AaSP: Aliasing-aware Self-Supervised Pre-Training for Audio Spectrogram Transformers

2025-12-03 · Kohei Yamamoto, Kosuke Okusa arxiv

Transformer-based audio self-supervised learning (SSL) models commonly use spectrograms, vision-style Transformers, and masked modeling objectives. However, convolutional patchification with temporal downsampling lowers …

Self-Supervised Learning

ATGNN: Audio Tagging Graph Neural Network

2023-11-02 · Shubhr Singh, Christian J. Steinmetz, Emmanouil Benetos, Huy Phan 외

Deep learning models such as CNNs and Transformers have achieved impressive performance for end-to-end audio tagging. Recent works have shown that despite stacking multiple layers, the receptive field of CNNs remains sev…

Audio TaggingGraph Neural Network

From Coarse to Fine: Efficient Training for Audio Spectrogram Transformers

2024-01-16 · Jiu Feng, Mehmet Hamza Erol, Joon Son Chung, Arda Senocak

Transformers have become central to recent advances in audio classification. However, training an audio spectrogram transformer, e.g. AST, from scratch can be resource and time-intensive. Furthermore, the complexity of t…

Audio Classification