Datasets:
Create README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,81 @@
|
|
| 1 |
-
---
|
| 2 |
-
license:
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
- ko
|
| 6 |
+
tags:
|
| 7 |
+
- music
|
| 8 |
+
- music-information-retrieval
|
| 9 |
+
- plagiarism-detection
|
| 10 |
+
- music-similarity
|
| 11 |
+
task_categories:
|
| 12 |
+
- audio-classification
|
| 13 |
+
size_categories:
|
| 14 |
+
- n<1K
|
| 15 |
+
configs:
|
| 16 |
+
- config_name: default
|
| 17 |
+
data_files:
|
| 18 |
+
- split: train
|
| 19 |
+
path: smp_dataset.csv
|
| 20 |
+
arxiv: 2601.21260
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
# Similar Music Pair (SMP) Dataset
|
| 24 |
+
|
| 25 |
+
The SMP (Segment-based Music Plagiarism) dataset contains music plagiarism
|
| 26 |
+
detection pairs with temporal segment annotations. Each row represents a pair
|
| 27 |
+
of songs with identified similar segments.
|
| 28 |
+
|
| 29 |
+
This dataset accompanies the paper
|
| 30 |
+
[Music Plagiarism Detection: Problem Formulation and a Segment-based Solution](https://arxiv.org/abs/2601.21260).
|
| 31 |
+
|
| 32 |
+
- Code: https://github.com/Mippia/Music-Plagiarism-Detection
|
| 33 |
+
- Demo: https://huggingface.co/spaces/mippia/MPD-demo
|
| 34 |
+
- Project page: https://mippia.github.io/icassp-mpd/
|
| 35 |
+
|
| 36 |
+
## Dataset Structure
|
| 37 |
+
|
| 38 |
+
| Column | Description |
|
| 39 |
+
| --- | --- |
|
| 40 |
+
| `ori_title` | Title of the original song |
|
| 41 |
+
| `comp_title` | Title of the comparison song |
|
| 42 |
+
| `ori_link` | YouTube link to the original song |
|
| 43 |
+
| `comp_link` | YouTube link to the comparison song |
|
| 44 |
+
| `relation` | Relationship type (e.g., `plag` for plagiarism) |
|
| 45 |
+
| `ori_times` | List of start times (seconds) of similar segments in the original song |
|
| 46 |
+
| `comp_times` | List of start times (seconds) of similar segments in the comparison song |
|
| 47 |
+
| `pair_number` | Unique identifier for song pairs |
|
| 48 |
+
| `acoustic_idx` | Unique identifier for segment pairs |
|
| 49 |
+
|
| 50 |
+
Time annotations are JSON-formatted lists; `ori_times[i]` and `comp_times[i]`
|
| 51 |
+
correspond to the same matching segment between the two songs.
|
| 52 |
+
|
| 53 |
+
## Usage
|
| 54 |
+
|
| 55 |
+
```python
|
| 56 |
+
from datasets import load_dataset
|
| 57 |
+
|
| 58 |
+
dataset = load_dataset("mippia/SMP-dataset")
|
| 59 |
+
print(dataset["train"][0])
|
| 60 |
+
```
|
| 61 |
+
|
| 62 |
+
## Notes
|
| 63 |
+
|
| 64 |
+
- **Audio is not included.** Only YouTube links and temporal annotations are
|
| 65 |
+
provided. Users must retrieve audio from YouTube themselves.
|
| 66 |
+
- The dataset includes both English and Korean songs across multiple genres.
|
| 67 |
+
|
| 68 |
+
## Citation
|
| 69 |
+
|
| 70 |
+
```bibtex
|
| 71 |
+
@inproceedings{go2026mpd,
|
| 72 |
+
title={Music Plagiarism Detection: Problem Formulation and a Segment-based Solution},
|
| 73 |
+
author={Go, Seonghyeon and Kim, Yumin},
|
| 74 |
+
booktitle={ICASSP},
|
| 75 |
+
year={2026}
|
| 76 |
+
}
|
| 77 |
+
```
|
| 78 |
+
|
| 79 |
+
## License
|
| 80 |
+
|
| 81 |
+
Released under CC BY-NC 4.0 for non-commercial research use.
|