Alcadramin commited on
Commit
ff20b5b
·
verified ·
1 Parent(s): b0d050c

signalign-bench v0.1

Browse files
README.md ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: per-track-cc
4
+ license_details: >-
5
+ Word timing annotations derive from JamendoLyrics and carry each song's
6
+ original Creative Commons license (BY / BY-SA / BY-ND / BY-NC / BY-NC-SA /
7
+ BY-NC-ND — see the `license` field per record). Difficulty bucket
8
+ annotations (buckets.csv) are original work released under CC-BY-4.0.
9
+ Audio is NOT redistributed here; fetch it from the jamendolyrics dataset.
10
+ task_categories:
11
+ - automatic-speech-recognition
12
+ language:
13
+ - en
14
+ - fr
15
+ - de
16
+ - es
17
+ tags:
18
+ - music
19
+ - lyrics
20
+ - alignment
21
+ - singing
22
+ - benchmark
23
+ - evaluation
24
+ pretty_name: signalign-bench
25
+ size_categories:
26
+ - n<1K
27
+ ---
28
+
29
+ # signalign-bench v0.1
30
+
31
+ **The first difficulty-bucketed word-level lyrics alignment benchmark for
32
+ sung vocals.**
33
+
34
+ Existing lyrics-alignment evaluation reports one blended number. Singing
35
+ fails aligners in *different ways* — fast rap, melisma, held notes, vocals
36
+ buried in the mix — and a single number hides all of it. This benchmark
37
+ tags every track with its dominant difficulty and reports metrics per
38
+ bucket.
39
+
40
+ Maintained at: https://github.com/alcadramin/signalign (evaluation harness,
41
+ baselines, protocol).
42
+
43
+ ## Contents
44
+
45
+ | File | What |
46
+ |---|---|
47
+ | `jamendolyrics.jsonl` | 79 tracks, word-level gold onsets/offsets, difficulty bucket, language, per-track license |
48
+ | `buckets.csv` | The raw human bucket annotations (id → difficulty) |
49
+ | `results/` | Baseline system scores (raw JSON, per bucket) |
50
+
51
+ Schema per record: `id`, `audio_path` (relative to the
52
+ [jamendolyrics](https://huggingface.co/datasets/jamendolyrics/jamendolyrics)
53
+ dataset root), `duration`, `words[{text,start,end}]`, `difficulty`,
54
+ `language`, `source`, `license`.
55
+
56
+ ## Difficulty buckets
57
+
58
+ Assigned by ear by a human annotator (single annotator, v0.1 — annotator:
59
+ alca, 2026-08-14). One dominant label per track; ties broken by fixed
60
+ priority rap > melisma > held > buried.
61
+
62
+ | bucket | tracks | meaning |
63
+ |---|---|---|
64
+ | clean | 46 | clear vocal, plain delivery |
65
+ | buried | 13 | vocal low in the mix / heavy accompaniment |
66
+ | rap | 11 | fast dense delivery |
67
+ | melisma | 5 | multi-pitch syllables, vocal runs |
68
+ | held | 4 | delivery built from long sustained notes |
69
+
70
+ ## Audio
71
+
72
+ Not re-hosted. Word timings and buckets reference the
73
+ [jamendolyrics/jamendolyrics](https://huggingface.co/datasets/jamendolyrics/jamendolyrics)
74
+ dataset (same track ids / file names):
75
+
76
+ ```bash
77
+ hf download jamendolyrics/jamendolyrics --repo-type dataset --local-dir data/jamendolyrics
78
+ ```
79
+
80
+ Note: top-level `mp3/` entries in that download may materialize as text
81
+ pointer files; real audio lives under `subsets/<lang>/mp3/`.
82
+
83
+ ## Metrics protocol
84
+
85
+ Defined and implemented in
86
+ [`eval/score.py`](https://github.com/alcadramin/signalign) (single source
87
+ of truth): per-bucket **coverage**, **MAE**, **MedAE** (matched words, ms),
88
+ **PCO@{100,200,300}ms** with all gold words as denominator (a dropped word
89
+ counts as a miss). Word matching = LCS over normalized text.
90
+
91
+ ## Baseline results (v0.1)
92
+
93
+ Demucs htdemucs vocal stem → forced alignment. Full tables in `results/`.
94
+
95
+ | system | lyrics input | coverage | MAE | MedAE | PCO@100 |
96
+ |---|---|---|---|---|---|
97
+ | wav2vec2-base-960h (speech) + gold lyrics | yes | 1.00 | 150ms | 41ms | 79.7% |
98
+ | WhisperX medium (ASR path) | no | 0.56 | 2187ms | 54ms | 38.9% |
99
+
100
+ Per-bucket highlights: rap fails catastrophically not gradually (42ms MedAE,
101
+ 214ms MAE, lyrics-informed); melisma smears onsets (worst PCO@100); held
102
+ notes are the easiest bucket, not the hardest; WhisperX drops 44% of sung
103
+ words. Whisper language ID misdetected a German rap track as Khmer.
104
+
105
+ ## Limitations
106
+
107
+ - Single annotator, track-level buckets (v0.2 targets segment-level).
108
+ - 79 tracks, 4 European languages; no extreme-technique or a-cappella-rap
109
+ hard cases yet (planned additions).
110
+ - Baseline alignments use an English character vocabulary after ASCII
111
+ folding for all languages.
112
+
113
+ ## Citation
114
+
115
+ ```
116
+ @misc{signalign-bench,
117
+ title = {signalign-bench: a difficulty-bucketed word-level lyrics
118
+ alignment benchmark for sung vocals},
119
+ author = {alca},
120
+ year = {2026},
121
+ url = {https://huggingface.co/datasets/Alcadramin/signalign-bench}
122
+ }
123
+ ```
124
+
125
+ Please also cite the underlying JamendoLyrics dataset (Stoller et al.;
126
+ Durand et al., see the jamendolyrics dataset card).
buckets.csv ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id,difficulty
2
+ HILA_-_Give_Me_the_Same,clean
3
+ Quentin_Hannappe_-_Keep_On,clean
4
+ Songwriterz_-_Back_In_Time,clean
5
+ Kinematic_-_Peyote,clean
6
+ Avercage_-_Embers,buried
7
+ Color_Out_-_Falling_Star,clean
8
+ The.madpix.project_-_One_Way_Street,buried
9
+ Wordsmith_-_The_Statement,rap
10
+ JASON_MILLER_-_CROWD_PLEASER,rap
11
+ Lower_Loveday_-_Is_It_Right_,clean
12
+ Pure_Mids_-_The_Leader,clean
13
+ Ridgway_-_Fire_Inside,rap
14
+ Moon_I_Mean_-_Wrong_Concept,melisma
15
+ Slingshot_Miracle_-_Whistler,clean
16
+ The_Rinn_-_Voices__2017_Version_,clean
17
+ Rxbyn_-_Bad_Side,rap
18
+ Tom_Orlando_-_The_One__feat._Tina_G_,rap
19
+ LUNABLIND_-_Vision__Radio_Edit_,clean
20
+ Explosive_Ear_Candy_-_Like_The_Sun,clean
21
+ Cortez_-_Feel__Stripped_,melisma
22
+ 1_Freak_-_Automatisch_Gekommen,buried
23
+ Baila_-_Alfonso_Lugo,clean
24
+ Besando_Sapos_-_Dream_Tabu,buried
25
+ Bitte_beweg_dich_nicht_-_Bukto,buried
26
+ Burn_Out_Man_-_Abendblau,clean
27
+ Cafe_Jenseitz_Bebelstraße_-_kangaroo.musique,clean
28
+ Capotes_à_un_Franc_-_elmanu,clean
29
+ Caralibro_-_Vagos_Permanentes,clean
30
+ CHRISTMAS_AVEC_TOI_-_imfreshyourepretty,clean
31
+ CLUB_DESTINO__-_Pensando_en_ti_-_CLUB_DESTINO,clean
32
+ Confession_-_Quesabe,rap
33
+ Culture_&_Co._-_cool.cavemen,buried
34
+ Da_wurdest_du_geboren_-_Alice_Tlustos_,held
35
+ de_bonne_humeur_-_Le_Nez_Tordu,clean
36
+ Der_Baum_-_Dienstag_is_Damensauna_(2),clean
37
+ Der_Musiker_-_d-music,melisma
38
+ dich_gehen_zu_sehn._-_Wingenbach_Frank,clean
39
+ Die_Revolution_gehört_Dir!_-_partysahnen,clean
40
+ Diosa_de_la_noche_-_Brunela_Crochenci,melisma
41
+ 10._Disparan_-_criatura,buried
42
+ Drei_Nüsse_-_patrouille,clean
43
+ Esencia_-_NandoMalo_,clean
44
+ Fantasma_-_Los_Rombos,melisma
45
+ Freifliegen_-_durch.dick.und.duenn,held
46
+ Fußabdrücke_-_Andreas_Jachmann,clean
47
+ Guayeteo_-_JhoyKing,rap
48
+ Háblame_-_(Talk_to_me)_-_Brunela_Crochenci,clean
49
+ Ich_kann_dich_nicht_vergessen_-_Wingenbach_Frank,buried
50
+ Intentando_Destacar_-_Sundayers_,clean
51
+ Intro_[Pulsschlag]_-_Zeugen_der_Leere_(2),buried
52
+ Keine_Lust_-_Jonny_M,rap
53
+ l'abandon_-_flo,clean
54
+ La_rumba_del_coronavirus_-_Rich_Don_Jeri,clean
55
+ Le_musée_d'air_contemporain_-_KPTN,clean
56
+ Les_files_d'attente_-_Law',clean
57
+ Libre_by_CybeR_AttaCK_-_CyberAttacK,buried
58
+ Mère_nature_-_Law',clean
59
+ Mes_Larmes_-_kobzx2z,rap
60
+ ¡Óyeme_tiburón!_-_Corrientes,held
61
+ Yuanan_-_Miedo_-_Yuanan,clean
62
+ Musik_-_Heiko,clean
63
+ Palabras_-_Javier_Gomez_Bello,clean
64
+ Pas_que_tes_pas_-_AZUL,clean
65
+ Pluie_d'entre_deux_saisons_-_Midnight_Prefou,clean
66
+ POIGNEE_DE_MAIN_-_Cabbac,clean
67
+ Quiero_y_Puedo_-_Nacidos_de_la_Tierra,rap
68
+ Schnodderdodder_-_Abendblau,clean
69
+ Séculaire_feat._Nÿme_-_saru,rap
70
+ Sehnsucht-Unplugged_-_REH-TORTE,buried
71
+ SHANEY_23_feat._G1NA_G._x_In_den_Strassen_-_Shaney_23,clean
72
+ Sin_miedo_-_Living_Camboya,clean
73
+ te_amo_-_fabios_la_nueva_expresion_de_la_cancion,clean
74
+ Te_Recuerdo_-_Wilson_Way,held
75
+ DON_VALDES_-_Tu_sais_Man,clean
76
+ Une_Vie_De_Roi_-_david,clean
77
+ Vente_-_Fafarulo_Calabaza,buried
78
+ Veränderung_-_doromusis,clean
79
+ Le_royaume_des_glous_glous_-_Raoul_de_QSM,buried
80
+ En_liberté_-_tom.leyak,clean
jamendolyrics.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
results/wav2vec2_base_gold_lyrics.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean": {
3
+ "n_words": 11257,
4
+ "coverage": 1.0,
5
+ "mae_ms": 133.6,
6
+ "medae_ms": 39.0,
7
+ "pco_100": 0.788,
8
+ "pco_200": 0.9129,
9
+ "pco_300": 0.9448
10
+ },
11
+ "buried": {
12
+ "n_words": 3181,
13
+ "coverage": 1.0,
14
+ "mae_ms": 149.2,
15
+ "medae_ms": 48.0,
16
+ "pco_100": 0.7793,
17
+ "pco_200": 0.9132,
18
+ "pco_300": 0.9481
19
+ },
20
+ "rap": {
21
+ "n_words": 4921,
22
+ "coverage": 1.0,
23
+ "mae_ms": 214.2,
24
+ "medae_ms": 42.0,
25
+ "pco_100": 0.8293,
26
+ "pco_200": 0.9309,
27
+ "pco_300": 0.9486
28
+ },
29
+ "melisma": {
30
+ "n_words": 1270,
31
+ "coverage": 1.0,
32
+ "mae_ms": 116.6,
33
+ "medae_ms": 53.5,
34
+ "pco_100": 0.7402,
35
+ "pco_200": 0.9126,
36
+ "pco_300": 0.9496
37
+ },
38
+ "held": {
39
+ "n_words": 951,
40
+ "coverage": 1.0,
41
+ "mae_ms": 65.5,
42
+ "medae_ms": 32.0,
43
+ "pco_100": 0.8801,
44
+ "pco_200": 0.9674,
45
+ "pco_300": 0.9769
46
+ },
47
+ "all": {
48
+ "n_words": 21580,
49
+ "coverage": 1.0,
50
+ "mae_ms": 150.3,
51
+ "medae_ms": 41.0,
52
+ "pco_100": 0.7974,
53
+ "pco_200": 0.9194,
54
+ "pco_300": 0.9479
55
+ }
56
+ }
results/whisperx_medium.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean": {
3
+ "n_words": 11257,
4
+ "coverage": 0.5633827840454828,
5
+ "mae_ms": 2480.0,
6
+ "medae_ms": 55.0,
7
+ "pco_100": 0.3907,
8
+ "pco_200": 0.4578,
9
+ "pco_300": 0.4764
10
+ },
11
+ "buried": {
12
+ "n_words": 3181,
13
+ "coverage": 0.48255265639735934,
14
+ "mae_ms": 1846.8,
15
+ "medae_ms": 72.0,
16
+ "pco_100": 0.2814,
17
+ "pco_200": 0.3301,
18
+ "pco_300": 0.3471
19
+ },
20
+ "rap": {
21
+ "n_words": 4921,
22
+ "coverage": 0.5793537898801057,
23
+ "mae_ms": 2171.2,
24
+ "medae_ms": 42.0,
25
+ "pco_100": 0.4444,
26
+ "pco_200": 0.48,
27
+ "pco_300": 0.4845
28
+ },
29
+ "melisma": {
30
+ "n_words": 1270,
31
+ "coverage": 0.6062992125984252,
32
+ "mae_ms": 1636.7,
33
+ "medae_ms": 73.5,
34
+ "pco_100": 0.385,
35
+ "pco_200": 0.4756,
36
+ "pco_300": 0.4969
37
+ },
38
+ "held": {
39
+ "n_words": 951,
40
+ "coverage": 0.6803364879074658,
41
+ "mae_ms": 854.8,
42
+ "medae_ms": 57.0,
43
+ "pco_100": 0.4374,
44
+ "pco_200": 0.5384,
45
+ "pco_300": 0.572
46
+ },
47
+ "all": {
48
+ "n_words": 21580,
49
+ "coverage": 0.5627896200185357,
50
+ "mae_ms": 2187.4,
51
+ "medae_ms": 54.0,
52
+ "pco_100": 0.3886,
53
+ "pco_200": 0.4487,
54
+ "pco_300": 0.4646
55
+ }
56
+ }