File size: 7,034 Bytes
2975ba9 dd987b4 4e522bb dd987b4 4e522bb dd987b4 4e522bb dd987b4 4e522bb edf0a67 4e522bb edf0a67 4e522bb 2975ba9 dd987b4 4e522bb dd987b4 4e522bb 458aa01 dd987b4 4e522bb 458aa01 4e522bb 458aa01 4e522bb dd987b4 458aa01 dd987b4 4e522bb dd987b4 4e522bb dd987b4 4e522bb dd987b4 4e522bb dd987b4 458aa01 4e522bb 458aa01 4e522bb dd987b4 458aa01 dd987b4 458aa01 dd987b4 | 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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | ---
license: apache-2.0
task_categories:
- question-answering
- visual-question-answering
language:
- en
tags:
- music
- music-understanding
- sheet-music
- abc-notation
- benchmark
- multimodal
pretty_name: "MSU-Bench: Musical Score Understanding Benchmark"
size_categories:
- 1K<n<10K
configs:
- config_name: nested
data_files:
- split: test
path: nested/test-*
- config_name: flat
data_files:
- split: test
path: flat/test-*
default: true
dataset_info:
- config_name: nested
features:
- name: song_id
dtype: string
- name: abc_notation
dtype: string
- name: pdf
dtype: binary
- name: images
sequence: image
- name: questions
struct:
- name: level
sequence: int32
- name: question
sequence: string
- name: answer
sequence: string
splits:
- name: test
num_examples: 150
- config_name: flat
features:
- name: song_id
dtype: string
- name: abc_notation
dtype: string
- name: level
dtype: int32
- name: question
dtype: string
- name: answer
dtype: string
splits:
- name: test
num_examples: 1800
---
# MSU-Bench: Musical Score Understanding Benchmark
[](https://arxiv.org/abs/2511.20697)
[](https://huggingface.co/datasets/Krinos/MSU-Bench)
**Evaluating Large Language Models' Comprehension of Complete Musical Scores**
---
## Overview
MSU-Bench is a human-curated benchmark for evaluating the musical score understanding capabilities of Large Language Models (LLMs) and Vision-Language Models (VLMs). It supports multimodal evaluation through both textual (ABC notation) and visual (PDF/image) inputs.
**Key Statistics:**
- 150 complete musical scores
- 1,800 generative question-answer pairs
- 4 hierarchical difficulty levels
- 12 questions per score (3 per level)
## Multi-level Understanding

## Data Curation and Evaluation

## Difficulty Levels
| Level | Focus | Examples |
|-------|-------|----------|
| **Level 1** - Onset Information | Metadata at the beginning of a score | Composer, title, key, time signature, tempo, instrumentation, anacrusis |
| **Level 2** - Notation & Note | Local bar-level notation details | Pitch range, accidentals, dynamics, articulations, ornaments, tempo changes |
| **Level 3** - Chord & Harmony | Harmonic structures and progressions | Chord qualities, inversions, cadences, modulations, pedal points |
| **Level 4** - Texture & Form | Large-scale structural analysis | Melodic motifs, thematic organisation, texture types, formal design |
## Dataset Configs
The dataset is available in two configurations:
### `flat` (default) — 1 question per row, 1,800 rows
Each row contains a single question-answer pair with the score's ABC notation. Best for evaluation pipelines.
| Column | Type | Description |
|--------|------|-------------|
| `song_id` | `string` | Unique identifier derived from the score filename |
| `abc_notation` | `string` | Full ABC notation (text-based symbolic representation) |
| `level` | `int32` | Difficulty level (1–4) |
| `question` | `string` | The question text |
| `answer` | `string` | The reference answer |
### `nested` — 12 questions per score, 150 rows
Each row contains one complete score with all 12 questions nested, plus the PDF and page images. Best for per-score or visual analysis.
| Column | Type | Description |
|--------|------|-------------|
| `song_id` | `string` | Unique identifier |
| `abc_notation` | `string` | Full ABC notation |
| `pdf` | `binary` | The original rendered PDF |
| `images` | `list[image]` | Individual page images (PNG), 1–35 pages per score |
| `questions` | `struct{level, question, answer}` | 12 questions (3 per difficulty level) with reference answers |
> **Note:** PDF and page images are only stored in the `nested` config to avoid duplication. Use `song_id` to join with `flat` if needed.
### Modalities for Evaluation
| Modality | Input | Target Models |
|----------|-------|---------------|
| Textual QA | ABC notation + question | LLMs |
| Visual QA | PDF/images + question | VLMs |
## Repertoire
The benchmark covers 150 scores from the Western art music canon, spanning:
- **Periods:** Baroque, Classical, Romantic, Impressionism, 20th Century
- **Composers:** Bach, Beethoven, Chopin, Brahms, Debussy, Liszt, Schubert, Mozart, Mussorgsky, Grieg, and others
- **Genres:** Sonatas, character pieces, fugues, waltzes, nocturnes, etudes, rhapsodies, symphonies, concertos, art songs
## Usage
### Loading the Flat Config (default)
```python
from datasets import load_dataset
ds = load_dataset("Krinos/MSU-Bench", split="test")
print(len(ds)) # 1800
sample = ds[0]
print(sample["song_id"])
print(f"Level {sample['level']}: {sample['question']} -> {sample['answer']}")
```
### Loading the Nested Config
```python
ds_nested = load_dataset("Krinos/MSU-Bench", "nested", split="test")
print(len(ds_nested)) # 150
sample = ds_nested[0]
for lvl, q, a in zip(
sample["questions"]["level"],
sample["questions"]["question"],
sample["questions"]["answer"],
):
print(f" L{lvl}: {q} -> {a}")
```
### Visual QA with Page Images
```python
ds_nested = load_dataset("Krinos/MSU-Bench", "nested", split="test")
sample = ds_nested[0]
for i, img in enumerate(sample["images"]):
img.save(f"page_{i}.png")
```
### Joining Flat + Nested for Visual Evaluation
```python
ds_flat = load_dataset("Krinos/MSU-Bench", split="test")
ds_nested = load_dataset("Krinos/MSU-Bench", "nested", split="test")
# Build a lookup from song_id to images
images_lookup = {row["song_id"]: row["images"] for row in ds_nested}
# Get images for a flat row
sample = ds_flat[0]
images = images_lookup[sample["song_id"]]
```
## Citation
```bibtex
@article{dai2025msubench,
title={Musical Score Understanding Benchmark: Evaluating Large Language Models' Comprehension of Complete Musical Scores},
author={Dai, Congren and Yang, Yue and Li, Krinos and Zhou, Huichi and Liang, Shijie and Zhang, Bo and Liu, Enyang and Jin, Ge and An, Hongran and Zhang, Haosen and Jing, Peiyuan and Lee, Kinhei and Zhang, Zhenxuan and Li, Xiaobing and Sun, Maosong},
journal={arXiv preprint arXiv:2511.20697},
year={2025}
}
```
## License
Apache 2.0. Please also refer to the repository for licensing information regarding the musical scores sourced from MuseScore.
## Acknowledgements
This work is supported by the Advanced Discipline Construction Project of Beijing Universities, the Special Programme of National Natural Science Foundation of China (Grant No. T2341003), and the Major Programme of National Social Science Fund of China (Grant No. 21ZD19).
|