Audio Sentiment Analysis via Distillation and Cross-Modal Integration of Generated Multilingual Transcripts
Summary
Radu Tudor Ionescu proposes a novel knowledge distillation framework for audio sentiment polarity classification, integrating speech with automatically generated multilingual text. The multimodal teacher model employs a cascaded cross-modal transformer to combine audio, ASR-generated English transcripts, and NMT-translated German, French, and Spanish texts. This teacher's knowledge is then transferred to an efficient audio-only WavLM student model. Experiments on the large-scale MSP-Podcast corpus, comprising 169,190 training, 34,399 development, and 46,294 test-1 samples, demonstrate significant performance gains. The multimodal teacher achieved up to +5.89% macro-F1 and +5.15% accuracy over the unimodal WavLM baseline. Crucially, the distilled audio-only student boosted performance by +1.54% macro-F1 and +0.81% accuracy without introducing computational overhead during inference. Ablation studies confirmed the utility of both automatic transcripts and translations.
Key takeaway
For Machine Learning Engineers developing audio sentiment analysis systems, you can achieve substantial performance improvements for your audio-only models without increasing inference latency. Implement a knowledge distillation pipeline where a multimodal teacher, trained on audio and automatically generated multilingual text transcripts, transfers its insights to a lightweight audio-only student. This approach allows your deployed models to benefit from rich textual context during training, while maintaining real-time efficiency.
Key insights
Multimodal integration of audio with generated multilingual text, combined with knowledge distillation, significantly enhances audio-only sentiment analysis performance without inference overhead.
Principles
- Automatically generated multilingual text provides valuable sentiment polarity clues for multimodal models.
- Knowledge distillation effectively transfers complex multimodal model insights to efficient unimodal models.
- Learning under privileged information enables using extra modalities solely during training for inference-time efficiency.
Method
The method involves generating English transcripts via Faster-Whisper ASR, translating them into German, French, and Spanish via NLLB-200 NMT, encoding modalities with specific backbones, fusing them with a Cascaded Cross-Modal Transformer, and distilling knowledge to an audio-only WavLM student.
In practice
- Generate multilingual text transcripts from audio using ASR and NMT for richer training data.
- Implement cascaded cross-modal transformers for robust multimodal feature integration.
- Distill knowledge from complex multimodal models into efficient unimodal models for deployment.
Topics
- Audio Sentiment Analysis
- Knowledge Distillation
- Cross-Modal Transformers
- Multimodal Learning
- Automatic Speech Recognition
- Neural Machine Translation
Code references
Best for: AI Scientist, Machine Learning Engineer, NLP Engineer
Related on AIssential
See Counsel's argued verdicts on the open AI decisions leaders are weighing →
Editorial summary, takeaway, and curation by AIssential. Original article published by cs.CL updates on arXiv.org.