--- 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 {sample['answer']}") ``` ### Loading the Nested Config ```python # Nested config: 12 questions per score ds = load_dataset("Krinos/MSU-Bench", "nested", split="test") print(len(ds)) # 150 sample = ds[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 sample = ds[0] for i, img in enumerate(sample["images"]): img.save(f"page_{i}.png") ``` ## 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).