Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -34,11 +34,28 @@ Along with the full dataset, we provide several subsets which may be appropriate
|
|
34 |
|
35 |
## Dataset
|
36 |
|
37 |
-
As detailed in our [paper](https://openreview.net/pdf?id=X5hrhgndxW), Aria-MIDI was created by transcribing publicly available solo-piano audio recordings into MIDI files. To accomplish this, we developed various tools which we integrated into our data pipeline, which we also release under the
|
38 |
|
39 |
[Aria-AMT](https://github.com/EleutherAI/aria-amt). A seq-to-seq piano transcription model which accurately transcribes notes from solo-piano recordings to MIDI. We designed this model to be robust, aiming to maintain note-identification accuracy when transcribing realistic audio from a wide range of recording environments. We also provide an inference engine for Linux/CUDA, supporting batched processing as well as multi-gpu setups.
|
40 |
|
41 |
-
[Aria-CL](https://github.com/loubbrad/aria-cl). A solo-piano audio-classification model capable of detecting and isolating (i.e., segmenting) solo-piano content
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
## Citation/License
|
44 |
|
@@ -53,3 +70,4 @@ Aria-MIDI is distributed with the [CC-BY-NC-SA 4.0](https://creativecommons.org/
|
|
53 |
url={https://openreview.net/forum?id=X5hrhgndxW},
|
54 |
}
|
55 |
```
|
|
|
|
34 |
|
35 |
## Dataset
|
36 |
|
37 |
+
As detailed in our [paper](https://openreview.net/pdf?id=X5hrhgndxW), Aria-MIDI was created by transcribing publicly available solo-piano audio recordings into MIDI files. To accomplish this, we developed various tools which we integrated into our data pipeline, which we also release under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) license. In particular:
|
38 |
|
39 |
[Aria-AMT](https://github.com/EleutherAI/aria-amt). A seq-to-seq piano transcription model which accurately transcribes notes from solo-piano recordings to MIDI. We designed this model to be robust, aiming to maintain note-identification accuracy when transcribing realistic audio from a wide range of recording environments. We also provide an inference engine for Linux/CUDA, supporting batched processing as well as multi-gpu setups.
|
40 |
|
41 |
+
[Aria-CL](https://github.com/loubbrad/aria-cl). A solo-piano audio-classification model capable of detecting and isolating (i.e., segmenting) solo-piano content from arbitrary audio files. We designed our approach to additionally exclude solo-piano audio which may cause problems for transcription models, e.g., recordings with significant audio artifacts.
|
42 |
+
|
43 |
+
We provide the dataset as a tarball. Filenames follow the format `<file_id>_<segment_number>.mid`, where each segment number corresponds to a distinct (i.e., non-overlapping), contiguous portion of solo-piano content from each audio file, identified and transcribed independently. Metadata is provided in the file metadata.json, structured as:
|
44 |
+
|
45 |
+
```
|
46 |
+
<file_id>: {
|
47 |
+
"metadata": {
|
48 |
+
<metadata_category>: <metadata>,
|
49 |
+
...,
|
50 |
+
},
|
51 |
+
"audio_scores": {
|
52 |
+
<segment_number>: <score>,
|
53 |
+
...,
|
54 |
+
}
|
55 |
+
}
|
56 |
+
```
|
57 |
+
|
58 |
+
Metadata was extracted from textual information associated with each original audio file and may vary in accuracy. Audio scores are calculated as the average score assigned by our classifier across segments, designed to correlate with the audio quality of the underlying solo-piano recording.
|
59 |
|
60 |
## Citation/License
|
61 |
|
|
|
70 |
url={https://openreview.net/forum?id=X5hrhgndxW},
|
71 |
}
|
72 |
```
|
73 |
+
|