File size: 2,394 Bytes
717a171
 
 
 
 
 
539bbc5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
717a171
 
548e228
717a171
b6a62eb
a2c7b90
d634bf1
b6a62eb
01f1e18
 
982c2f9
e0e5d6e
d634bf1
e0e5d6e
 
 
b6a62eb
01f1e18
717a171
d634bf1
 
 
 
 
 
 
 
a2c7b90
d634bf1
 
717a171
abe42e3
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
license: mit
task_categories:
- question-answering
language:
- en
dataset_info:
  features:
  - name: id
    dtype: string
  - name: task_name
    dtype: string
  - name: audio
    dtype:
      audio:
        sampling_rate: 16000
  - name: question
    dtype: string
  - name: choice_a
    dtype: string
  - name: choice_b
    dtype: string
  - name: choice_c
    dtype: string
  - name: choice_d
    dtype: string
  - name: answer_gt
    dtype: string
  - name: category
    dtype: string
  - name: sub-category
    dtype: string
  - name: sub-sub-category
    dtype: string
  - name: linguistics_sub_discipline
    dtype: string
  splits:
  - name: train
    num_bytes: 1199569150.0
    num_examples: 5000
  download_size: 1466894219
  dataset_size: 1199569150.0
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# [ICLR 2026] MMSU: A Massive Multi-task Spoken Language Understanding and Reasoning Benchmark


[![Paper](https://img.shields.io/badge/arxiv-%20PDF-red)](https://arxiv.org/pdf/2506.04779) [![Project](https://img.shields.io/badge/Project-Page-green)](https://github.com/dingdongwang/MMSU)


![Pipeline](intro.png)

## Overview of MMSU
MMSU (Massive Multi-task Spoken Language Understanding and Reasoning Benchmark) is a comprehensive benchmark for evaluating fine-grained spoken language understanding and reasoning in multimodal models. 

It systematically captures the variance of real-world linguistic phenomena in daily speech through **47 sub-tasks**, including phonetics, prosody, rhetoric, syntactics, semantics, and paralinguistics, spanning both perceptual and higher-level reasoning capabilities. 

The benchmark comprises **5,000 carefully curated audio–question–answer pairs** derived from diverse authentic recordings.

![Pipeline](benchmark.png)

## Usage
You can load the dataset via Hugging Face datasets:

```
from datasets import load_dataset
ds = load_dataset("ddwang2000/MMSU")
```

For evaluation, please refer to [**GitHub Code**](https://github.com/dingdongwang/MMSU)


## Citation
```
@article{wang2025mmsu,
      title={MMSU: A Massive Multi-task Spoken Language Understanding and Reasoning Benchmark}, 
      author={Dingdong Wang and Jincenzi Wu and Junan Li and Dongchao Yang and Xueyuan Chen and Tianhua Zhang and Helen Meng},
      journal={arXiv preprint arXiv:2506.04779},
      year={2025},
}
```