ZEBRA: Zero-Shot Entropy-Regularized Prompt Learning for Base-to-Novel Generalization in Audio-Language Models


Abstract

Audio-Language Models (ALMs) achieve strong zero-shot performance by aligning audio with textual class descriptions. Although prompt learning improves accuracy on base classes through few-shot supervised adaptation, we observe a critical trade-off: it often degrades performance on novel classes, sometimes falling below zero-shot accuracy. This exposes a base-to-novel generalization gap in prompt learning for ALMs. To address this issue, we propose ZEBRA (Zero-shot Entropy-Regularized Prompt Learning for Base-to-Novel Generalization), a plug-and-play framework that fuses zero-shot logits with prompt-learning logits, and employs self-entropy regularization to reduce overfitting to base classes. Experiments across multiple audio classification datasets show that ZEBRA consistently improves novel-class performance while maintaining strong base accuracy, significantly reducing the base-to-novel gap compared to standard prompt learning. The code is available at: https://github.com/asif-hanif/zebra.

1 Introduction↩︎

Recent advances in Vision-Language Models (VLMs) have inspired the development of Audio-Language Models (ALMs), which achieve strong performance on zero-shot audio recognition tasks [1][4]. In the zero-shot setting, audio features are aligned with textual descriptions of class labels, enabling recognition without task-specific training. This paradigm provides flexibility and generalization to unseen categories while eliminating the need for large labeled datasets. Despite these advantages, zero-shot performance often falls short of fully supervised or few-shot adaptation. The primary limitation lies in the reliance on manually designed text prompts, which may not optimally align with the target dataset. Prompt learning addresses this limitation by replacing hand-crafted templates with learnable context tokens that are optimized using labeled data from base classes [5], [6]. By adapting prompts to the downstream task, prompt learning significantly improves performance over zero-shot baselines.
However, in the context of audio-language models, we observe a critical trade-off: while prompt learning consistently improves accuracy on base classes (seen during few-shot training), it often degrades performance on novel classes (unseen during few-shot training). In several cases, prompt learning performs even worse than the original zero-shot model on novel categories (refer to Figure 1 and Table 1). This reveals a fundamental base-to-novel generalization gap under prompt learning. Optimizing prompts solely using base-class supervision encourages overfitting to seen categories, distorting the semantic alignment learned during large-scale pre-training and weakening zero-shot transferability.

Figure 1: Comparison of Base and Novel Performance. Existing prompt-learning methods improve accuracy on base classes but generalize poorly to novel classes, often performing even worse than zero-shot inference. In contrast, incorporating ZEBRA with these baselines consistently boosts novel-class accuracy while maintaining strong performance on base classes.

To address this challenge, we propose ZEBRA: Zero-shot Entropy-Regularized Prompt Learning for Base-to-Novel GeneRAlization. ZEBRA is a plug-and-play framework that operates on top of existing prompt learning methods and is designed to preserve zero-shot generalization while still benefiting from supervised adaptation. ZEBRA introduces two complementary mechanisms: First, it fuses zero-shot logits with the prompt-learning logits, effectively anchoring adaptation to the original zero-shot decision space. Second, it introduces a self-entropy regularization term in the loss function to mitigate overconfidence in base classes during few-shot training. By discouraging over-confident predictions, self-entropy prevents excessive specialization to seen categories and promotes smoother decision boundaries, thereby improving generalization to unseen classes. ZEBRA (refer to Figure 2 for an overview) is lightweight, as it introduces no additional learnable parameters to existing prompt-learning baselines. The zero-shot logits are computed once and reused during both few-shot training and inference, eliminating extra forward passes through the text encoder and resulting in negligible computational overhead. Our contributions are as follows:

  • We identify and analyze a base-to-novel generalization gap in prompt learning for audio-language models, where improvements on base classes often come at the cost of degraded novel-class performance (see Figure 1 or Table  1).

  • We propose ZEBRA (Zero-shot Entropy-Regularized Prompt Learning for Base-to-Novel Generalization), a plug-and-play framework that builds upon existing prompt-learning methods without introducing additional learnable parameters and with negligible computational overhead.

  • ZEBRA integrates zero-shot logit fusion to anchor adaptation to the pre-trained decision space and employs self-entropy regularization to reduce overconfidence on base classes, enhancing generalization to unseen categories.

  • We demonstrate consistent improvements in novel-class generalization across multiple audio classification datasets, significantly reducing the base-to-novel performance gap compared to vanilla baseline prompt learning methods.

Figure 2: ZEBRA approach operates on top of existing prompt learning methods to bridge the base-to-novel generalization gap, preserving zero-shot transferability while benefiting from supervised adaptation through few-shot prompt learning. ZEBRA introduces no additional learnable parameters to existing prompt learning methods and incurs negligible computational overhead.

2 Related Work↩︎

Inspired by the success of CLIP [7] in the image–language domain, many audio–language models have adopted a similar contrastive learning framework. CLAP [2] and AudioCLIP [3], for example, extend this paradigm to align audio and textual representations, enabling robust audio classification and cross-modal retrieval. Like CLIP, these models are trained to maximize similarity between matched audio–text pairs while minimizing similarity for mismatched pairs.
Few-shot adaptation has attracted significant attention in vision–language models, particularly for adapting CLIP [8]. Among these, prompt learning has emerged as a parameter-efficient alternative to full fine-tuning, enabling adaptation to downstream tasks by introducing a small set of learnable parameters while keeping the pretrained backbone frozen [5], [6]. This strategy substantially reduces computational and storage costs compared to full model updates. Prompt learning has been successfully applied across natural language processing [9], computer vision [8], [10], [11], and more recently, the audio-language domain [12][14]. In audio–language models, approaches such as PALM [12] demonstrate that learning only a small set of prompt vectors can effectively adapt frozen pretrained ALM to achieve strong audio classification performance.

3 Methodology↩︎

Zero-Shot Classification in ALM. In CLIP-style audio-language models (ALMs) [7], zero-shot classification is performed by measuring the similarity between the audio representation and a set of class-specific text descriptions. Let \(\boldsymbol{\mathrm{x}}\) denote an input audio waveform, and let \(\boldsymbol{\mathrm{t}}= \{t_1, t_2, \dots, t_c\}\) represent the set of textual class descriptions for \(c\) classes. The prediction logits are computed as:

\[\label{eq:zs95logits} f_{\mathrm{zs}}(\boldsymbol{\mathrm{x}}) = \bigg\{\operatorname{sim}\big(f_{A}(\boldsymbol{\mathrm{x}})~,~f_{T}(t_i)\big)\bigg\}_{i=1}^{c},\tag{1}\]

where \(f_A\) and \(f_T\) denote the audio and text encoders, respectively, and \(\operatorname{sim}(\cdot)\) is a cosine similarity function. The predicted label corresponds to the class with the highest similarity score.
Base-to-Novel Generalization. In the base-to-novel setting, the full label space is defined as \(\mathcal{C} = \{1,2,\ldots,c\}\) and is partitioned into base classes \(\mathcal{C}_B\) and novel classes \(\mathcal{C}_N\), such that \(\mathcal{C}_B \cup \mathcal{C}_N = \mathcal{C}\) and \(\mathcal{C}_B \cap \mathcal{C}_N = \emptyset\). The model is trained using labeled data from \(\mathcal{C}_B\) and is expected to generalize effectively to the unseen (novel) classes in \(\mathcal{C}_N\). In the context of prompt learning, the prompts are optimized using base-class samples from the training set, and evaluation is conducted on both base and novel class samples from the test set to assess generalization performance.
Prompt Learning in ALM. Textual class descriptions play a central role in zero-shot inference for ALMs; however, manually designed prompts often introduce performance variability and sensitivity to wording. Prompt learning mitigates this issue by introducing auxiliary learnable parameters \(\varphi\) into the text encoder \(f_T\). These parameters are optimized in a few-shot setting to adapt the frozen pre-trained model to downstream tasks while reducing reliance on manual prompt engineering [9]. Formally, prompt learning learns \(\varphi\) by minimizing a task-specific objective over a few-shot training dataset \(\mathcal{D}\): \[\label{eq:pl95logits} \underset{\varphi}{\operatorname{minimize}} \sum_{(\mathbf{x},y)\in\mathcal{D}} \mathcal{L}\big(f_{\mathrm{pr}}(\mathbf{x};\varphi), y\big),\tag{2}\] where \((\mathbf{x}, y)\) denotes an audio-label pair from \(\mathcal{D}\), \(f_{\mathrm{pr}}(\mathbf{x};\varphi)\) represents the model’s prediction conditioned on the learnable prompt parameters \(\varphi\), and \(\mathcal{L}(\cdot)\) is the task-specific loss function, typically the cross-entropy loss. Two representative instances of \(f_{\mathrm{pr}}(\mathbf{x};\varphi)\) are COOP [5] and COCOOP [6]. In COOP, a set of shared learnable context tokens is optimized and prepended to each class name before being passed to text encoder. In COCOOP, the context tokens are dynamically generated conditioned on the audio feature vector, enabling instance-specific adaptation. Although these approaches improve performance on base classes, they optimize prompts solely using base-class supervision and do not explicitly preserve the original zero-shot alignment. As a result, the adapted representation space can become biased toward seen categories, leading to degraded performance on novel classes, as shown in Figure 1.
ZEBRA: Zero-Shot Entropy-Regularized Base-to-Novel Generalization. To mitigate the base-to-novel generalization gap, we propose ZEBRA, a plug-and-play framework that operates on top of existing prompt learning methods. ZEBRA preserves zero-shot transferability while benefiting from supervised adaptation through two complementary mechanisms.
(i) Zero-shot Logit Fusion: Instead of relying solely on prompt-learning logits, we fuse them with the original zero-shot logits during both few-shot training and inference: \[\label{eq:zebra95logits} f_{\mathrm{zebra}}(\boldsymbol{\mathrm{x}};\varphi) = \lambda_{\mathrm{zs}}\cdot f_{\mathrm{zs}}(\boldsymbol{\mathrm{x}}) + \lambda_{\mathrm{pr}}\cdot f_{\mathrm{pr}}(\boldsymbol{\mathrm{x}};\varphi),\tag{3}\] where \(f_{\mathrm{zs}} \in \mathbb{R}^{c}\) denotes logits from zero-shot setting, \(f_{\mathrm{pr}} \in \mathbb{R}^{c}\) denotes logits from any prompt-learning method (e.g., COOP or COCOOP) and \(\lambda_{\mathrm{zs}},\lambda_{\mathrm{pr}}\) control the contribution of the zero-shot and prompt learning components, respectively. This fusion anchors adaptation to the pre-trained decision space.
(ii) Self-Entropy Regularization: To prevent overconfidence on base classes, we introduce a self-entropy regularization term: \[\mathcal{L}_{\text{ent}} = - \sum_{i} \mathbf{p}^{i}(\mathbf{x}) \log \mathbf{p}^{i}(\mathbf{x}),\] where \(\mathbf{p}(\mathbf{x})\) is the softmax probability derived from \(f_{\mathrm{zebra}}(\boldsymbol{\mathrm{x}};\varphi) \in \mathbb{R}^{c}\). The final training objective becomes: \[\nonumber \mathcal{L}_{\mathrm{zebra}}\big(\boldsymbol{\mathrm{x}},y;\varphi\big) = \mathcal{L}_{\mathrm{ce}}\big(f_{\mathrm{zebra}},y\big) - \mathcal{L}_{\mathrm{ent}}(\mathrm{softmax}(f_{\mathrm{zebra}})),\] where \(\mathcal{L}_{\mathrm{ce}}(\cdot)\) is the cross-entropy loss. By combining zero-shot logit fusion with entropy regularization, ZEBRA reduces overfitting to base classes while preserving the semantic alignment necessary for robust novel-class generalization. Formally, we optimize following objective during few-shot training on base classes: \[\label{eq:zebra95objective} \underset{ \varphi }{\operatorname{minimize}}~~ \sum_{(\boldsymbol{\mathrm{x}},y)\in\mathcal{D}} \mathcal{L}_{\mathrm{zebra}}\big(\boldsymbol{\mathrm{x}},y;\varphi\big).\tag{4}\] During optimization, we minimize the cross-entropy loss while maximizing the self-entropy term, which constructively counteracts overconfident predictions, thereby discouraging overconfidence and reducing overfitting to the base classes. At inference time, predictions are computed from the fused zero-shot and prompt-learning logits, without applying entropy regularization. The predicted label \(\hat{y}\) is obtained as follows: \[\hat{y} = \underset{ i\in \{1,2,\dots,c\} }{\mathrm{argmax}} ~~~ f_{\mathrm{zebra}}^{i}(\boldsymbol{\mathrm{x}};\varphi),\] where \(f_{\mathrm{zebra}}(\boldsymbol{\mathrm{x}};\varphi) \in \mathbb{R}^{c}\) denotes the fused logit vector over all \(c\) classes, and \(f_{\mathrm{zebra}}^{i}(\boldsymbol{\mathrm{x}};\varphi)\) represents the logit corresponding to \(i_{\mathrm{th}}\) class. It should be noted that few-shot training is performed using classes in \(\mathcal{C}_B\), while evaluation is conducted separately on base classes \(\mathcal{C}_B\) and novel classes \(\mathcal{C}_N\).
It is worth noting that ZEBRA introduces no additional learnable parameters to existing prompt-learning baselines. The zero-shot logits are computed only once and can be reused during both few-shot training and inference, eliminating the need for additional forward passes through the text encoder. As a result, ZEBRA is a lightweight approach that incurs negligible computational overhead. For an overview of the proposed approach, see Figure 2.

4 Experiments and Results↩︎

Models and Datasets. For the CLIP-style audio-language backbone, we adopt Pengi [1], a generative audio-language model consisting of audio and text encoders followed by an LLM decoder. Following the setup of PALM [12], we discard the decoder and utilize only the pretrained audio and text encoders, effectively employing PENGI in a CLIP-like contrastive framework to leverage its strong pretrained representations and zero-shot generalization capability. We evaluate our method on a diverse set of speech and audio processing tasks, including instrument classification, sound event classification, emotion recognition, vocal sound classification, surveillance sound event classification, acoustic scene classification, and music analysis. Instrument classification is assessed using the Beijing Opera [15] and NS-Instruments [16] datasets. For sound event classification, we use ESC-50 and its ESC50-Actions subset [17], as well as UrbanSound8K [18]. Emotion recognition is evaluated on CREMA-D [19] and RAVDESS [20]. Vocal sound classification is conducted using VocalSound [21], while surveillance sound event classification relies on SESA [22]. Acoustic scene classification is performed on TUT2017 [23], and music analysis is evaluated using GT-Music-Genre [24].

Table 1: Comparison of ZEBRA with Baseline Methods. While baseline prompt learning methods improve performance on base classes, they often lead to degraded accuracy on novel classes when compared with zero-shot. By incorporating ZEBRA, performance on novel classes is consistently improved while maintaining strong base-class accuracy. Values marked with \(\blacktriangle\)/\(\blacktriangledown\) denote the increase/decrease in accuracy with respect to the zero-shot performance for the corresponding dataset in each row.
\(\bm{\mathrm{METHODS}}\) \(\rightarrow\) \(\bm{\mathrm{ZERO~SHOT}}\) \(\bm{\mathrm{COOP}}\) \(\bm{\mathrm{COCOOP}}\) \(\bm{\mathrm{COOP+ZEBRA}}\) \(\bm{\mathrm{COCOOP+ZEBRA}}\)
(lr3pt)2-3 (lr3pt)4-5 (lr3pt)6-7 (lr3pt)8-9 (lr3pt)10-11 \(\bm{\mathrm{DATASETS}}\) \(\downarrow\) BASE NOVEL BASE NOVEL BASE NOVEL BASE NOVEL BASE NOVEL
Beijing-Opera 52.00 43.48 96.10 60.87 96.00 60.88 96.03 82.61 96.20 78.26
CREMA-D 66.13 25.99 59.16 32.61 63.11 14.84 61.72 18.24 54.29 19.94
ESC50-Actions 67.50 75.00 100.0 72.50 100.0 62.50 95.00 77.50 97.50 77.50
ESC50 58.50 67.00 94.50 54.50 95.00 63.00 95.50 65.00 94.50 61.50
GT-Music-Genre 56.86 36.73 76.47 53.06 83.33 45.92 74.51 52.04 83.33 37.76
NS-Instruments 53.61 53.87 65.79 39.22 66.67 68.57 70.78 54.93 68.34 63.73
RAVDESS 23.25 38.78 59.21 32.70 60.53 40.68 59.65 42.97 60.09 43.73
SESA 60.00 93.33 95.56 76.67 91.11 93.33 91.11 98.33 93.33 95.00
TUT2017 33.33 30.72 67.81 15.86 80.14 18.88 71.69 31.53 80.37 37.35
UrbanSound8K 63.77 67.55 88.11 36.12 88.80 47.48 85.26 65.94 87.89 62.96
VocalSound 53.90 74.54 75.50 54.43 77.95 38.77 80.73 64.07 83.63 76.77
AVERAGE 53.53 55.18 79.82 48.04 82.05 50.44 80.17 59.37 81.75 59.50
Table 2: Ablation on zero-shot logits and entropy loss.
\(\bm{\mathrm{ZERO{-}SHOT}}\) \(\bm{\mathrm{ENTROPY}}\) \(\bm{\mathrm{BASE}}\) \(\bm{\mathrm{NOVEL}}\)
79.82 48.04
80.31 58.83
81.21 48.10
80.17 59.37
Table 3: Runtime and ECE of baselines with and without ZEBRA. \((\dagger)\) indicates results obtained using ZEBRA.
\(\bm{\mathrm{METHODS}}\) \(\bm{\mathrm{COOP}}\) \(\bm{\mathrm{COOP}^{\dagger}}\) \(\bm{\mathrm{COCOOP}}\) \(\bm{\mathrm{COCOOP}^{\dagger}}\)
\({\mathrm{TIME~({Train})}}\) \(\mathrm{19m~36s}\) \(\mathrm{19m~45s}\) \(\mathrm{45m~37s}\) \(\mathrm{45m~41s}\)
\({\mathrm{TIME~({Test})}}\) \(\phantom{0}\mathrm{2m~40s}\) \(\phantom{0}\mathrm{2m~42s}\) \(\phantom{0}\mathrm{3m~37s}\) \(\phantom{0}\mathrm{3m~38s}\)
\(\mathrm{ECE~(BASE)}\) \(0.0677\) \(0.0755\) \(0.0821\) \(0.0777\)
\(\mathrm{ECE~(NOVEL)}\) \(0.2033\) \(0.1997\) \(0.2738\) \(0.2253\)

Baseline Methods. We consider ZERO-SHOT, COOP [5], and COCOOP [6] as baselines. COOP and COCOOP are prompt learning methods originally proposed for vision-language models that replace handcrafted prompts with learnable context tokens optimized in the text encoder’s input embedding space; COCOOP further introduces instance-conditioned prompts via feedback from the audio encoder, whereas COOP learns context tokens shared across instances. We adopt their audio-language adaptations as implemented in PALM [12], where the vision encoder is replaced with an audio encoder. We exclude PALM itself as a baseline because its class-specific learnable vectors limit base-to-novel generalization, while COOP and COCOOP are class-agnostic and can generalize to unseen classes. Our method builds upon COOP and COCOOP in a plug-and-play manner, seamlessly integrating with their learned prompt representations without introducing additional trainable parameters or requiring further hyperparameter tuning. It operates on top of the existing framework, preserving their training protocols and generalization capabilities, while providing consistent improvements with minimal computational overhead and no modifications to the underlying model architecture.
Implementation Details. Except for ZERO-SHOT, all methods are trained for \(50\) epochs under the standard few-shot setting, using \(16\) randomly sampled training examples per base class. Inference is conducted on the full test set using the predefined base–novel class split. Few-shot training is done with stochastic gradient descent (SGD) at a learning rate of \(0.05\), and performance is measured in terms of accuracy. Each method is evaluated with three different random seeds, and we report the average results. For ZERO-SHOT, we adopt the default prompt template: This is a recording of {CLASS NAME}, for a fair comparison. We run all experiments using NVIDIA RTX A6000 GPU. For the contribution weights in Equation 3 , we empirically set \(\lambda_{\mathrm{zs}} = 0.5\) and \(\lambda_{\mathrm{pr}} = 0.5\). We also scale the \(\mathcal{L}_{\mathrm{ent}}\) by a factor of \(0.05\) during few-shot training.
Results and Discussion. We report a comparison of ZERO-SHOT, prompt-learning methods, and their ZEBRA-enhanced variants in Table 1. As discussed earlier, baseline methods (COOP and COCOOP) substantially improve performance on base classes compared to ZERO-SHOT (e.g., \(+26.2\%\) and \(+28.5\%\), respectively). However, they generalize poorly to novel classes, exhibiting notable drops in accuracy (e.g., \(-7.13\%\) and \(-4.74\%\), respectively) and, in both cases, performing below the ZERO-SHOT novel-class average of \(55.18\%\). On the other hand, ZEBRA enhances their novel-class performance by \(+4.19\%\) and \(+4.31\%\), respectively, bringing the accuracy above the ZERO-SHOT novel-class average of \(55.18\%\) while maintaining competitive performance on base classes. Results demonstrate that, on average, ZEBRA improves novel-class generalization while maintaining base performance, achieving these gains with no additional parameters and negligible computational overhead (see Table 3).
Ablative Analysis. We analyze the impact of the fusion of zero-shot logits and self-entropy loss term on ZEBRA’s performance in Table 2 (using the COOP baseline). The results indicate that most of the improvement comes from incorporating zero-shot logits, while the self-entropy term provides a further, albeit marginal, gain. We also report runtime (training and testing, averaged across all datasets) and Expected Calibration Error (ECE) in Table 3. ZEBRA introduces negligible computational overhead while consistently reducing ECE on average across both base and novel classes, demonstrating improved calibration without sacrificing efficiency.

5 Conclusion↩︎

We introduced ZEBRA, a lightweight, plug-and-play framework for improving base-to-novel generalization in audio–language models. While existing prompt-learning methods substantially boost base-class performance, they often suffer from degraded generalization to novel classes, frequently underperforming the zero-shot baseline. ZEBRA effectively mitigates this trade-off by leveraging zero-shot knowledge and entropy-regularized logits, consistently improving novel-class accuracy while preserving strong base-class performance. ZEBRA adds no learnable parameters and incurs negligible computational overhead, making it a simple yet effective enhancement to existing prompt-learning methods.

6 Generative AI Use Disclosure↩︎

We confirm that an LLM was used solely for writing refinement (grammar, wording, and clarity). All ideas, analyses, and conclusions are the authors’ own.

References↩︎

[1]
S. Deshmukh, B. Elizalde, R. Singh, and H. Wang, “Pengi: An audio language model for audio tasks,” Advances in Neural Information Processing Systems, vol. 36, pp. 18090–18108, 2023.
[2]
B. Elizalde, S. Deshmukh, M. Al Ismail, and H. Wang, “Clap learning audio concepts from natural language supervision,” in ICASSP 2023-2023 IEEE international conference on acoustics, speech and signal processing (ICASSP), 2023, pp. 1–5.
[3]
A. Guzhov, F. Raue, J. Hees, and A. Dengel, “Audioclip: Extending clip to image, text and audio,” in ICASSP 2022-2022 IEEE international conference on acoustics, speech and signal processing (ICASSP), 2022, pp. 976–980.
[4]
J. Zhang, J. Huang, S. Jin, and S. Lu, “Vision-language models for vision tasks: A survey,” IEEE Transactions on Pattern Analysis and Machine Intelligence, 2024.
[5]
K. Zhou, J. Yang, C. C. Loy, and Z. Liu, “Learning to prompt for vision-language models,” International Journal of Computer Vision (IJCV), 2022.
[6]
K. Zhou., J. Yang, C. C. Loy, and Z. Liu, “Conditional prompt learning for vision-language models,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 16816–16825.
[7]
A. Radford et al., “Learning transferable visual models from natural language supervision,” in International conference on machine learning, 2021, pp. 8748–8763.
[8]
J. Gu et al., “A systematic survey of prompt engineering on vision-language foundation models,” arXiv preprint arXiv:2307.12980, 2023.
[9]
P. Liu, W. Yuan, J. Fu, Z. Jiang, H. Hayashi, and G. Neubig, “Pre-train, prompt, and predict: A systematic survey of prompting methods in natural language processing,” ACM computing surveys, vol. 55, no. 9, pp. 1–35, 2023.
[10]
A. Hanif et al., “Baple: Backdoor attacks on medical foundational models using prompt learning,” in International conference on medical image computing and computer-assisted intervention, 2024, pp. 443–453.
[11]
R. Imam, A. Hanif, J. Zhang, K. W. Dawoud, Y. Kementchedjhieva, and M. Yaqub, “Noise is an efficient learner for zero-shot vision-language models,” in Proceedings of the IEEE/CVF international conference on computer vision, 2025, pp. 5820–5829.
[12]
A. Hanif, M. T. Agro, M. A. Qazi, and H. Aldarmaki, “Palm: Few-shot prompt learning for audio language models,” in Proceedings of the 2024 conference on empirical methods in natural language processing, 2024, pp. 18527–18536.
[13]
A. Seth, R. Selvakumar, S. Kumar, S. Ghosh, and D. Manocha, “Pat: Parameter-free audio-text aligner to boost zero-shot audio classification,” in Proceedings of the 2025 conference of the nations of the americas chapter of the association for computational linguistics: Human language technologies (volume 1: Long papers), 2025, pp. 12376–12394.
[14]
A. Hanif, M. T. Agro, F. Shamshad, and K. Nandakumar, “TrojanWave: Exploiting prompt learning for stealthy backdoor attacks on large audio-language models,” in Proceedings of the 2025 conference on empirical methods in natural language processing, 2025, pp. 18628–18644.
[15]
M. Tian, A. Srinivasamurthy, M. Sandler, and X. Serra, “A study of instrument-wise onset detection in beijing opera percussion ensembles,” in 2014 ieee international conference on acoustics, speech and signal processing (icassp), 2014, pp. 2159–2163.
[16]
J. Engel et al., “Neural audio synthesis of musical notes with WaveNet autoencoders.” 2017.
[17]
K. J. Piczak, ESC: Dataset for Environmental Sound Classification,” in Proceedings of the 23rd Annual ACM Conference on Multimedia, Oct. 2015, pp. 1015–1018, doi: 10.1145/2733373.2806390.
[18]
J. Salamon, C. Jacoby, and J. P. Bello, “A dataset and taxonomy for urban sound research,” in Proceedings of the 22nd ACM international conference on multimedia, 2014, pp. 1041–1044.
[19]
H. Cao, D. G. Cooper, M. K. Keutmann, R. C. Gur, A. Nenkova, and R. Verma, “Crema-d: Crowd-sourced emotional multimodal actors dataset,” IEEE transactions on affective computing, vol. 5, no. 4, pp. 377–390, 2014.
[20]
S. R. Livingstone and F. A. Russo, “The ryerson audio-visual database of emotional speech and song (RAVDESS): A dynamic, multimodal set of facial and vocal expressions in north american english,” PloS one, vol. 13, no. 5, p. e0196391, 2018.
[21]
Y. Gong, Y.-A. Chung, and J. Glass, “PSLA: Improving audio tagging with pretraining, sampling, labeling, and aggregation,” IEEE/ACM Transactions on Audio, Speech, and Language Processing, 2021, doi: 10.1109/TASLP.2021.3120633.
[22]
T. Spadini, “Sound events for surveillance applications.” Zenodo, 2019.
[23]
T. Heittola, A. Mesaros, and T. Virtanen, TUT Acoustic Scenes 2017, Development dataset,” Department of Signal Processing, Tampere University of Technology, 2017. [Online]. Available: https://www.cs.tut.fi/sgn/arg/dcase2017/challenge/task-acoustic-scene-classification.
[24]
B. L. Sturm, “An analysis of the GTZAN music genre dataset,” in Proceedings of the second international ACM workshop on music information retrieval with user-centered and multimodal strategies, 2012, pp. 7–12.