Commit ·
c599a11
0
Parent(s):
Initial commit: Upload AudioMCQ-Mixed-To-Strong model
Browse files- .gitattributes +4 -0
- README.md +98 -0
- added_tokens.json +3 -0
- chat_template.jinja +7 -0
- config.json +3 -0
- generation_config.json +3 -0
- merges.txt +0 -0
- model-00001-of-00005.safetensors +3 -0
- model-00002-of-00005.safetensors +3 -0
- model-00003-of-00005.safetensors +3 -0
- model-00004-of-00005.safetensors +3 -0
- model-00005-of-00005.safetensors +3 -0
- model.safetensors.index.json +3 -0
- preprocessor_config.json +3 -0
- special_tokens_map.json +3 -0
- spk_dict.pt +3 -0
- tokenizer.json +3 -0
- tokenizer_config.json +3 -0
- vocab.json +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.json filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- audio
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# AudioMCQ-Mixed-to-Strong
|
| 8 |
+
|
| 9 |
+
<div align="center">
|
| 10 |
+
|
| 11 |
+
[](https://arxiv.org/abs/2509.21060)
|
| 12 |
+
[](https://huggingface.co/datasets/inclusionAI/AudioMCQ)
|
| 13 |
+
[](https://dcase.community/challenge2025/task-audio-question-answering-results)
|
| 14 |
+
|
| 15 |
+
</div>
|
| 16 |
+
|
| 17 |
+
## Overview
|
| 18 |
+
|
| 19 |
+
This repository contains the **Mixed-to-Strong** model checkpoint from our paper "Measuring Audio's Impact on Correctness: Audio-Contribution-Aware Post-Training of Large Audio Language Models". This model demonstrates state-of-the-art performance on audio question-answering benchmarks through our novel audio-contribution-aware post-training approach.
|
| 20 |
+
|
| 21 |
+
## Training Paradigm
|
| 22 |
+
|
| 23 |
+
The **Mixed-to-Strong** training paradigm follows a two-stage approach:
|
| 24 |
+
|
| 25 |
+
```
|
| 26 |
+
Stage 1: SFT on mixed audio-contribution data (weak + strong)
|
| 27 |
+
Stage 2: GRPO (RL) on strong audio-contribution data
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
This paradigm leverages both weak and strong audio-contribution samples during supervised fine-tuning, followed by reinforcement learning on challenging strong audio-contribution samples to achieve optimal performance.
|
| 31 |
+
|
| 32 |
+
## Model Details
|
| 33 |
+
|
| 34 |
+
- **Base Model**: Qwen2.5-Omni
|
| 35 |
+
- **Training Data**: [AudioMCQ Dataset](https://huggingface.co/datasets/inclusionAI/AudioMCQ) (571k samples)
|
| 36 |
+
- **Training Stages**:
|
| 37 |
+
- Stage 1 (SFT): Mixed audio-contribution subset
|
| 38 |
+
- Stage 2 (GRPO): Strong audio-contribution subset
|
| 39 |
+
- **System Prompt**: "You are an audio understanding model that answers multiple choice questions based on audio content."
|
| 40 |
+
|
| 41 |
+
## Usage
|
| 42 |
+
|
| 43 |
+
Our model loading and usage methods are identical to those of Qwen2.5-Omni. Please refer to the [official documentation](https://github.com/QwenLM/Qwen2.5-Omni).
|
| 44 |
+
|
| 45 |
+
### Input Format
|
| 46 |
+
|
| 47 |
+
The evaluation input prompt structure is:
|
| 48 |
+
|
| 49 |
+
```
|
| 50 |
+
[Question] Please choose the answer from the following options: [''Option1'', ''Option2'', ''Option3'', ''Option4'']. Output the final answer in <answer> </answer>.
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
### Example Usage
|
| 54 |
+
|
| 55 |
+
```python
|
| 56 |
+
# Load model following Qwen2.5-Omni documentation
|
| 57 |
+
# Apply system prompt: "You are an audio understanding model that answers multiple choice questions based on audio content."
|
| 58 |
+
# Format your question with the input structure above
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
## Performance
|
| 62 |
+
|
| 63 |
+
The Mixed-to-Strong model achieves superior performance across multiple benchmarks:
|
| 64 |
+
|
| 65 |
+
- **MMAU-test-mini**: State-of-the-art accuracy on general audio understanding
|
| 66 |
+
- **MMAR**: Strong performance on music understanding tasks
|
| 67 |
+
- **MMSU**: Excellent results on speech understanding
|
| 68 |
+
- **Strong Audio-Contribution Splits**: Significantly improved performance on challenging samples requiring deep audio understanding
|
| 69 |
+
|
| 70 |
+
For detailed performance metrics and comparisons, please refer to our paper.
|
| 71 |
+
|
| 72 |
+
## Related Resources
|
| 73 |
+
|
| 74 |
+
- **AudioMCQ Dataset**: [https://huggingface.co/datasets/inclusionAI/AudioMCQ](https://huggingface.co/datasets/inclusionAI/AudioMCQ)
|
| 75 |
+
- **Weak-to-Strong Checkpoint**: [https://huggingface.co/inclusionAI/AudioMCQ-Weak-To-Strong](https://huggingface.co/inclusionAI/AudioMCQ-Weak-To-Strong)
|
| 76 |
+
- **Paper**: [arXiv:2509.21060](https://arxiv.org/abs/2509.21060)
|
| 77 |
+
- **DCASE 2025 Challenge**: [http://dcase.community/challenge2025/](http://dcase.community/challenge2025/)
|
| 78 |
+
|
| 79 |
+
## Citation
|
| 80 |
+
|
| 81 |
+
If you find this model useful in your research, please cite:
|
| 82 |
+
|
| 83 |
+
```bibtex
|
| 84 |
+
@article{he2025audiomcq,
|
| 85 |
+
title={Measuring Audio's Impact on Correctness: Audio-Contribution-Aware Post-Training of Large Audio Language Models},
|
| 86 |
+
author={He, Haolin and others},
|
| 87 |
+
journal={arXiv preprint arXiv:2509.21060},
|
| 88 |
+
year={2025}
|
| 89 |
+
}
|
| 90 |
+
```
|
| 91 |
+
|
| 92 |
+
## Contact
|
| 93 |
+
|
| 94 |
+
- **Haolin He**: [harlandzzc@link.cuhk.edu.hk](mailto:harlandzzc@link.cuhk.edu.hk)
|
| 95 |
+
|
| 96 |
+
## Acknowledgements
|
| 97 |
+
|
| 98 |
+
We thank the organizers of DCASE 2025 and the research community for their valuable feedback and support.
|
added_tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e81a2cc3bd867a1217019eed202d1d8a07e1063ece716f22060dda14f6cc07d8
|
| 3 |
+
size 579
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{% set audio_count = namespace(value=0) %}{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system
|
| 2 |
+
You are a helpful assistant.<|im_end|>
|
| 3 |
+
{% endif %}<|im_start|>{{ message['role'] }}
|
| 4 |
+
{% if message['content'] is string %}{{ message['content'] }}<|im_end|>
|
| 5 |
+
{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_bos|><|IMAGE|><|vision_eos|>{% elif content['type'] == 'audio' or 'audio' in content or 'audio_url' in content %}{% set audio_count.value = audio_count.value + 1 %}{% if add_audio_id %}Audio {{ audio_count.value }}: {% endif %}<|audio_bos|><|AUDIO|><|audio_eos|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_bos|><|VIDEO|><|vision_eos|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>
|
| 6 |
+
{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant
|
| 7 |
+
{% endif %}
|
config.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ecb869394fd6257968ab5044c2da691b2da99b6c1a8dedf5e3fca4a602d09df
|
| 3 |
+
size 15303
|
generation_config.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c14ca8d34eca764b199c7c5440c5213da6cbe33918593ca59d4e8d97decd4613
|
| 3 |
+
size 117
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87df9e724ff5c44310a0d8519d1c8441b7220a115f86b3ecdd0e3518677c8fd5
|
| 3 |
+
size 4985055536
|
model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95f8cae79401bce12e5a8934c3b95e9a1c5a4a0aa5cd24bf317e4149a957511b
|
| 3 |
+
size 4991496832
|
model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b1dffba07c03766691ad0d151ab89c401164bf8f6af630b95d352780a6834d6c
|
| 3 |
+
size 4991496936
|
model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba02122e68d78a8b5c539bd0273d60da3e409fafbb9884aee47299a03f80c3c5
|
| 3 |
+
size 4969489856
|
model-00005-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ac1e7daca22acb04383f454edd83826fee7c30cac603f2cc81431f5201b2f12
|
| 3 |
+
size 1527220552
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89437e1f8d54819a994897ca7fcdc235f3d2b51fd310c8ebc73b0e1a2c50f447
|
| 3 |
+
size 233161
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b47055ce61463ce143e9aab741d55c0aa520801a0a5d63be73c5b17cecb6bc69
|
| 3 |
+
size 667
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db7fd39f5dc9ee37998c3ed04e3a3386989182a550064d2a2a9af16822cf22f4
|
| 3 |
+
size 833
|
spk_dict.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a05609b28f5d42b7b748f0f07592545c8f1f6885b9ae8fff64baf56e86b2a18
|
| 3 |
+
size 259544
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8441917e39ae0244e06d704b95b3124795cec478e297f9afac39ba670d7e9d99
|
| 3 |
+
size 11421870
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:23ec41e1562bab95487376c350e16e72a1b5e1e14a33f88e3c212b17a57f72c1
|
| 3 |
+
size 5160
|
vocab.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca10d7e9fb3ed18575dd1e277a2579c16d108e32f27439684afa0e10b1440910
|
| 3 |
+
size 2776833
|