anusfoil commited on
Commit
a3f5beb
·
verified ·
1 Parent(s): 3b4e235

Add dataset card with task description, fields, and baseline results

Browse files
Files changed (1) hide show
  1. README.md +112 -0
README.md ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - audio-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - music
9
+ - piano
10
+ - midi
11
+ - competition
12
+ - ranking
13
+ - chopin
14
+ pretty_name: Chopin Piano Competition 2015 – Preliminary Round MIDI
15
+ size_categories:
16
+ - n<1K
17
+ ---
18
+
19
+ # Chopin Piano Competition 2015 – Preliminary Round MIDI
20
+
21
+ Piano MIDI transcriptions of all 130 performers from the **preliminary round** of the
22
+ [18th International Chopin Piano Competition (Warsaw, 2015)](https://chopincompetition.pl/en/),
23
+ with competition labels for pairwise ranking evaluation.
24
+
25
+ Companion dataset for the [EVPMR benchmark](https://github.com/anusfoil/eval-piano-midi-repr)
26
+ (Evaluation of Piano MIDI Representations).
27
+
28
+ ## Dataset Description
29
+
30
+ Each performer submitted a ~30-minute recital. Audio was sourced from the official
31
+ Chopin Institute YouTube channel and transcribed to MIDI using a piano transcription model.
32
+
33
+ **Task**: Given two performances, predict which performer advanced further in the competition.
34
+ This is a **pairwise ranking** problem (chance accuracy = 0.50).
35
+
36
+ ## Data
37
+
38
+ ```
39
+ data/{performer_slug}/{title}.mid — 130 MIDI files (one per performer)
40
+ metadata/splits.csv — train/val/test split assignments
41
+ metadata/metadata_raw.csv — per-performer metadata
42
+ ```
43
+
44
+ ### `metadata/splits.csv`
45
+
46
+ | Column | Description |
47
+ |--------|-------------|
48
+ | `midi_path` | Relative path to MIDI file within `data/` |
49
+ | `label` | Competition round score (0–4); higher = advanced further |
50
+ | `split` | `train` / `val` / `test` |
51
+
52
+ Split sizes: **90 train / 20 val / 20 test** (stratified by round score, seed=42).
53
+
54
+ ### `metadata/metadata_raw.csv`
55
+
56
+ | Column | Description |
57
+ |--------|-------------|
58
+ | `performer_name` | Performer full name |
59
+ | `country` | Country code |
60
+ | `round_score` | Competition label (0–4) |
61
+ | `passed_prelim` | 1 if advanced past preliminary round, else 0 |
62
+ | `video_id` | YouTube video ID (source audio) |
63
+ | `video_title` | YouTube video title |
64
+ | `video_url` | Full YouTube URL |
65
+ | `match_score` | Audio-to-MIDI alignment confidence score |
66
+
67
+ ### Round score mapping
68
+
69
+ | Score | Meaning |
70
+ |-------|---------|
71
+ | 0 | Did not pass preliminary round |
72
+ | 1–4 | Passed preliminary; higher = advanced further in the competition |
73
+
74
+ ## Usage
75
+
76
+ ```python
77
+ from evpmr import ChopinCompTask
78
+
79
+ task = ChopinCompTask()
80
+ split = task.load_split(hf_download=True) # auto-downloads this dataset
81
+ ```
82
+
83
+ Or download manually:
84
+
85
+ ```python
86
+ from huggingface_hub import snapshot_download
87
+ path = snapshot_download("anusfoil/chopin-comp-midi", repo_type="dataset")
88
+ # MIDI files at: path/data/{performer_slug}/*.mid
89
+ # Splits at: path/metadata/splits.csv
90
+ ```
91
+
92
+ ## Baseline Results (EVPMR)
93
+
94
+ Evaluated with [Aria-medium](https://huggingface.co/loubb/aria-medium-embedding)
95
+ (frozen encoder, windowed encoding ~10–15 s per window):
96
+
97
+ | Probe | Pairwise Accuracy | Antisymmetry |
98
+ |-------|:-----------------:|:------------:|
99
+ | Linear (binary LogReg on concat embeddings) | 0.562 | 1.000 |
100
+ | Attentive (cross-attention, I-JEPA style) | 0.689 | 0.992 |
101
+
102
+ Chance level = 0.50. Antisymmetry measures consistency: a perfect ranker always
103
+ reverses its prediction when the pair is swapped (score = 1.0).
104
+
105
+ ## Provenance & License
106
+
107
+ - Audio source: [Chopin Institute YouTube channel](https://www.youtube.com/@ChopinInstitute) (CC BY)
108
+ - MIDI transcription: automated piano transcription
109
+ - Competition results: publicly available from [chopincompetition.pl](https://chopincompetition.pl)
110
+
111
+ This dataset is released under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).
112
+ Please cite the competition when using this data.