Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
- zh
|
| 6 |
+
tags:
|
| 7 |
+
- music
|
| 8 |
+
size_categories:
|
| 9 |
+
- 10K<n<100K
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# SongCompose Dataset
|
| 13 |
+
|
| 14 |
+
This repository hosts the official dataset used in **[SongComposer](https://arxiv.org/abs/2402.17645)**, a system designed for aligning lyrics and melody for LLMs-based vocal composition.
|
| 15 |
+
|
| 16 |
+
## 🌟 Overview
|
| 17 |
+
|
| 18 |
+
The dataset includes three types of aligned resources, grouped by language (English and Chinese):
|
| 19 |
+
|
| 20 |
+
- `lyric`: Unpaired lyrics in English and Chinese
|
| 21 |
+
- `melody`: Unpaired melodies (note sequences and durations)
|
| 22 |
+
- `pair`: Aligned lyric-melody pairs with note durations, rest durations, structures, and tempo (bpm)
|
| 23 |
+
|
| 24 |
+
Each top-level key in the JSON corresponds to a category (`lyric`, `melody`, `pair`), and each of them has nested keys `en` and `cn` for language split.
|
| 25 |
+
|
| 26 |
+
## 📂 Structure
|
| 27 |
+
|
| 28 |
+
Example format:
|
| 29 |
+
|
| 30 |
+
```json
|
| 31 |
+
{
|
| 32 |
+
"pair": {
|
| 33 |
+
"en": [
|
| 34 |
+
{
|
| 35 |
+
"lyrics": "...",
|
| 36 |
+
"notes": [...],
|
| 37 |
+
"notes_duration": [...],
|
| 38 |
+
"rest_duration": [...],
|
| 39 |
+
"structure": [...],
|
| 40 |
+
"bpm": 120
|
| 41 |
+
},
|
| 42 |
+
...
|
| 43 |
+
],
|
| 44 |
+
"cn": [ ... ]
|
| 45 |
+
},
|
| 46 |
+
"melody": {
|
| 47 |
+
"all": [ ... ],
|
| 48 |
+
},
|
| 49 |
+
"lyric": {
|
| 50 |
+
"en": [ ... ],
|
| 51 |
+
"cn": [ ... ]
|
| 52 |
+
}
|
| 53 |
+
}
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
## 📖 Citation
|
| 57 |
+
If you use this dataset in your work, please cite our paper:
|
| 58 |
+
```bibtex
|
| 59 |
+
@article{ding2024songcomposer,
|
| 60 |
+
title={SongComposer: A Multimodal Alignment Framework for Singing from Lyrics},
|
| 61 |
+
author={Ding, Shuangrui and Wu, Junjie and Yao, Yue and Lin, Dahua},
|
| 62 |
+
journal={arXiv preprint arXiv:2402.17645},
|
| 63 |
+
year={2024}
|
| 64 |
+
}
|
| 65 |
+
```
|