--- 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 **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).