Datasets:

Modalities:
Audio
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
License:
lucainiao commited on
Commit
00d0b84
·
verified ·
1 Parent(s): b9694d0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -30
README.md CHANGED
@@ -1,30 +1,59 @@
1
- ---
2
- license: cc-by-3.0
3
- dataset_info:
4
- features:
5
- - name: audio
6
- dtype: audio
7
- - name: relative_path
8
- dtype: string
9
- splits:
10
- - name: test
11
- num_bytes: 13646545685.208
12
- num_examples: 15292
13
- - name: validation
14
- num_bytes: 22378049262.984
15
- num_examples: 25468
16
- - name: train
17
- num_bytes: 269257423227.302
18
- num_examples: 150787
19
- download_size: 295850537553
20
- dataset_size: 305282018175.494
21
- configs:
22
- - config_name: default
23
- data_files:
24
- - split: train
25
- path: data/train-*
26
- - split: test
27
- path: data/test-*
28
- - split: validation
29
- path: data/validation-*
30
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-3.0
3
+ dataset_info:
4
+ features:
5
+ - name: audio
6
+ dtype: audio
7
+ - name: relative_path
8
+ dtype: string
9
+ splits:
10
+ - name: test
11
+ num_bytes: 13646545685.208
12
+ num_examples: 15292
13
+ - name: validation
14
+ num_bytes: 22378049262.984
15
+ num_examples: 25468
16
+ - name: train
17
+ num_bytes: 269257423227.302
18
+ num_examples: 150787
19
+ download_size: 295850537553
20
+ dataset_size: 305282018175.494
21
+ configs:
22
+ - config_name: default
23
+ data_files:
24
+ - split: train
25
+ path: data/train-*
26
+ - split: test
27
+ path: data/test-*
28
+ - split: validation
29
+ path: data/validation-*
30
+ ---
31
+
32
+ # MelodySim: Measuring Melody-aware Music Similarity for Plagiarism Detection
33
+
34
+ [Github](https://github.com/AMAAI-Lab/MelodySim) | [Model](https://huggingface.co/amaai-lab/MelodySim/tree/main) | [Paper](https://arxiv.org/abs/2505.20979)
35
+
36
+ The MelodySim dataset contains 1,710 valid synthesized pieces originated from Slakh2100 dataset, each containing 4 different versions (through various augmentation settings), with a total duration of 419 hours.
37
+
38
+ This dataset may help research in:
39
+ - Music similarity learning
40
+ - Music plagiarism detection
41
+
42
+ # Dataset Details
43
+ The MelodySim dataset contains three splits: train, validation and test. Each split contains multiple tracks. Each track folder contains the same song in 4 version ("original", "version_0", "version_1", "version_2"), all of which are synthesized from the same midi file with [sf2](https://github.com/Rainbow-Dreamer/sf2_loader) in different settings. Checkout [MelodySim Paper](https://arxiv.org/abs/2505.20979) for details how the different versions are augmented. Each version contains multiple 10-second chunks named with their indices.
44
+
45
+ After downloading the dataset, [this dataloader](https://github.com/AMAAI-Lab/MelodySim/blob/main/data/dataloader.py) may help loading the dataset.
46
+
47
+
48
+ # Citation
49
+
50
+ If you find this work useful in your research, please cite:
51
+
52
+ ```bibtex
53
+ @article{lu2025melodysim,
54
+ title={Text2midi-InferAlign: Improving Symbolic Music Generation with Inference-Time Alignment},
55
+ author={Tongyu Lu and Charlotta-Marlena Geist and Jan Melechovsky and Abhinaba Roy and Dorien Herremans},
56
+ year={2025},
57
+ journal={arXiv:2505.20979}
58
+ }
59
+ ```