Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
jonflynn commited on
Commit
f95a9e6
·
verified ·
1 Parent(s): 1e7d5cb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +81 -24
README.md CHANGED
@@ -1,24 +1,81 @@
1
- ---
2
- license: cc-by-4.0
3
- dataset_info:
4
- features:
5
- - name: id
6
- dtype: string
7
- - name: start_time
8
- dtype: int32
9
- - name: question
10
- dtype: string
11
- - name: answer
12
- dtype: string
13
- splits:
14
- - name: train
15
- num_bytes: 1126125
16
- num_examples: 948
17
- download_size: 65572
18
- dataset_size: 1126125
19
- configs:
20
- - config_name: default
21
- data_files:
22
- - split: train
23
- path: data/train-*
24
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ dataset_info:
4
+ features:
5
+ - name: id
6
+ dtype: string
7
+ - name: start_time
8
+ dtype: int32
9
+ - name: question
10
+ dtype: string
11
+ - name: answer
12
+ dtype: string
13
+ splits:
14
+ - name: train
15
+ num_bytes: 1126125
16
+ num_examples: 948
17
+ download_size: 65572
18
+ dataset_size: 1126125
19
+ configs:
20
+ - config_name: default
21
+ data_files:
22
+ - split: train
23
+ path: data/train-*
24
+ ---
25
+
26
+ # URMP ABC Notation 25s Dataset
27
+
28
+ ## Dataset Summary
29
+
30
+ The **URMP ABC Notation 25s Dataset** is a collection of question-and-answer pairs based on short audio clips from the [University of Rochester Multi-Modal Music Performance (URMP) dataset](https://labsites.rochester.edu/air/projects/URMP.html). Each entry in the dataset provides:
31
+
32
+ - An `id` identifying the original audio file.
33
+ - A `start_time` indicating where the audio clip begins within the full audio file.
34
+ - A `question` generated to prompt music transcription via ABC notation.
35
+ - An `answer` which is the ABC notation.
36
+
37
+ This dataset is intended for training multi-modal audio-language models (like [Spotify Llark](https://research.atspotify.com/2023/10/llark-a-multimodal-foundation-model-for-music/) and [Qwen2-Audio](https://github.com/QwenLM/Qwen2-Audio)) on the task of music transcription. The code I used for converting the MIDI to ABC notation is based on [this script](https://github.com/jwdj/EasyABC/blob/master/midi2abc.py).
38
+
39
+ **Why ABC?**
40
+
41
+ The reasons for choosing this notation are:
42
+
43
+ - It's a minimalist format for writing music
44
+ - It's widely used and popular, language models already have good comprehension and know a lot about ABC notation.
45
+ - It's flexible and can easily be extended to include tempo changes, time signature changes, additional playing styles like mentioned above, etc…
46
+
47
+ ## Licensing Information
48
+
49
+ - **URMP Dataset:** The original audio files are part of the URMP dataset. Refer to the [URMP dataset license](https://labsites.rochester.edu/air/projects/URMP.html) for terms of use.
50
+
51
+ ## Citation Information
52
+
53
+ If you use this dataset, please cite it as follows:
54
+
55
+ ```bibtex
56
+ @dataset{urmp_abc_notation_25s_2024,
57
+ title={URMP ABC Notation Dataset},
58
+ author={Jon Flynn},
59
+ year={2024},
60
+ howpublished={\url{https://huggingface.co/datasets/jonflynn/urmp_abc_notation_25s}},
61
+ note={ABC notation for the URMP dataset split into 25 second chunks},
62
+ }
63
+ ```
64
+
65
+ Additionally, cite the original URMP dataset:
66
+
67
+ ```bibtex
68
+ @article{li2018creating,
69
+ title={Creating a Multimodal Dataset for Tracking Human Motion and Kinematics in Music Performances},
70
+ author={Li, Chenyu and Xia, Wei and Akbari, Vahid and Duan, Zhiyao and Xu, Chenliang},
71
+ journal={arXiv preprint arXiv:1807.09365},
72
+ year={2018}
73
+ }
74
+ ```
75
+
76
+ ---
77
+
78
+ **Additional Resources:**
79
+
80
+ - **URMP Dataset Website:** [URMP Dataset](https://labsites.rochester.edu/air/projects/URMP.html)
81
+ - **ABC Notation:** [ABC Notation Official Website](http://abcnotation.com/)