Update README.md
Browse files
README.md
CHANGED
|
@@ -66,4 +66,53 @@ pretty_name: >-
|
|
| 66 |
Share Alike 4.0 Version)
|
| 67 |
size_categories:
|
| 68 |
- 1K<n<10K
|
| 69 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
Share Alike 4.0 Version)
|
| 67 |
size_categories:
|
| 68 |
- 1K<n<10K
|
| 69 |
+
---
|
| 70 |
+
|
| 71 |
+
# IMSLP MIDI Dataset (CC-BY-NC-SA-4.0)
|
| 72 |
+
|
| 73 |
+
This dataset contains MIDI files and metadata crawled from IMSLP (International Music Score Library Project) on **July 21-22, 2024**.
|
| 74 |
+
|
| 75 |
+
## Data Fields
|
| 76 |
+
- `midi_source`: URL to the original MIDI file on IMSLP (incl. original uploader).
|
| 77 |
+
- `metadata_source`: URL to the original metadata on IMSLP.
|
| 78 |
+
- `file_name`, `title`, `composer`, `year`, `era`, `style`, `key`, `license`: Metadata fields.
|
| 79 |
+
- `midi`: Raw MIDI bytes.
|
| 80 |
+
- `midi_mido`: JSON-serialized mido object.
|
| 81 |
+
|
| 82 |
+
## License Merging
|
| 83 |
+
While most files in IMSLP are stored as public domain or open source, different and sometimes incompatible licensing agreements exacerbate the conflation of individual pieces into a single data collection.
|
| 84 |
+
While there are several customized licenses for some of the MIDI files, some of the crawled and observed data were purely from the public domain globally, whereas the vast majority of all MIDI files make use of Creative Commons (CC) agreements. The latter may be combined under [specific circumstances](https://wiki.creativecommons.org/wiki/Wiki/cc_license_compatibility):
|
| 85 |
+
For example, CC-BY-licensed pieces may be remixed with CC-BY-SA- and CC-BY-NC-licensed pieces into a CC-BY-SA or CC-BY-NC remix, respectively. Furthermore, CC-BY-NC-licensed pieces or remixes may again be remixed using the CC-BY-NC-SA license. Finally, ShareAlike (SA) licenses CC-BY-SA and CC-BY-NC-SA of version 3.0 are [upgradable](https://creativecommons.org/share-your-work/licensing-considerations/compatible-licenses/) to those of version 4.0.
|
| 86 |
+
Since the compatibility of all other, mostly custom licenses, remains ambiguous, they have been dropped.
|
| 87 |
+
|
| 88 |
+
This specific dataset contains data that can be remixed as CC-BY-NC-SA-4.0.
|
| 89 |
+
|
| 90 |
+
## How to Retrieve Origin Data and Authors
|
| 91 |
+
- For each entry, use `midi_source` to find the original MIDI file and `metadata_source` for the metadata information.
|
| 92 |
+
|
| 93 |
+
## Statistics & Visualizations
|
| 94 |
+
|
| 95 |
+
- **Total entries:** 7586
|
| 96 |
+
- **Unique composers:** 1388
|
| 97 |
+
- **Unique works:** 7586
|
| 98 |
+
- **Year range:** 1013.0 - 735.0
|
| 99 |
+
- **Eras:** Romantic (2729), Baroque (1902), Renaissance (1319), Modern (944), Classical (463), Other (118), Early 20th century (94), Medieval (17)
|
| 100 |
+
- **Styles:** Romantic (2736), Baroque (2033), Renaissance (1368), Modern (720), Classical (462), Early 20th century (184), Traditional (35), Medieval (22), Jazz (15), Ancient (8), Non-western classical (3)
|
| 101 |
+
|
| 102 |
+

|
| 103 |
+
|
| 104 |
+

|
| 105 |
+
|
| 106 |
+

|
| 107 |
+
|
| 108 |
+

|
| 109 |
+
|
| 110 |
+
|
| 111 |
+
|
| 112 |
+
## How to Use
|
| 113 |
+
```python
|
| 114 |
+
from datasets import load_dataset
|
| 115 |
+
dataset = load_dataset('TiMauzi/imslp-midi-by-nc-sa')
|
| 116 |
+
```
|
| 117 |
+
|
| 118 |
+
In case of any copyright issues or concerns, feel free to contact me, so I can take this model offline.
|