ggfox00000 commited on
Commit
56e78e1
·
verified ·
1 Parent(s): aa45799

Upload MSDWild test: few=490, many=177

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
README.md ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - automatic-speech-recognition
5
+ - voice-activity-detection
6
+ language:
7
+ - en
8
+ - zh
9
+ - multilingual
10
+ size_categories:
11
+ - n<1K
12
+ pretty_name: MSDWild (val = test) — Speaker Diarization in the Wild
13
+ tags:
14
+ - speaker-diarization
15
+ - diarization
16
+ - msdwild
17
+ - in-the-wild
18
+ - multimodal
19
+ - rttm
20
+ - audio
21
+ annotations_creators:
22
+ - expert-generated
23
+ source_datasets:
24
+ - extended|msdwild
25
+ dataset_info:
26
+ - config_name: few
27
+ features:
28
+ - name: audio
29
+ dtype: audio
30
+ - name: rttm
31
+ dtype: string
32
+ - name: file_id
33
+ dtype: string
34
+ splits:
35
+ - name: test
36
+ num_examples: 490
37
+ - config_name: many
38
+ features:
39
+ - name: audio
40
+ dtype: audio
41
+ - name: rttm
42
+ dtype: string
43
+ - name: file_id
44
+ dtype: string
45
+ splits:
46
+ - name: test
47
+ num_examples: 177
48
+ ---
49
+
50
+ # MSDWild — validation / test split (speaker diarization in the wild)
51
+
52
+ Copie du split d'évaluation de **MSDWild** (Liu et al., Interspeech 2022), un
53
+ corpus de diarisation *in the wild* multimodal construit à partir de vidéos
54
+ réelles (talk-shows, interviews, débats…). MSDWild fournit deux sets de
55
+ validation utilisés comme **test de facto** par la communauté :
56
+
57
+ - **few** : 2 à 4 locuteurs par session (490 fichiers) — tâche "classique"
58
+ - **many** : 5+ locuteurs par session (177 fichiers) — tâche conversationnelle
59
+ dense, beaucoup plus difficile
60
+
61
+ Les RTTMs sont ceux distribués officiellement sur le repo upstream. Les audios
62
+ sont les WAV officiels (Google Drive, 7.56 GB).
63
+
64
+ ## Contenu
65
+
66
+ | Sous-split | Fichiers | Profil |
67
+ |------------|----------|--------|
68
+ | few | 490 | 2–4 locuteurs, segments courts |
69
+ | many | 177 | 5+ locuteurs, densité de tour de parole élevée |
70
+
71
+ - Audio : **WAV** 16 kHz mono (tels que distribués par MSDWild upstream)
72
+ - Annotations : **RTTM** standard pyannote
73
+ - Langues : multilingue (principalement anglais et chinois, sources web)
74
+ - Licence : **CC-BY-NC-4.0** — recherche uniquement (voir l'accord de licence
75
+ MSDWild upstream)
76
+
77
+ ## Structure
78
+
79
+ ```
80
+ dia-MsdWild-test/
81
+ ├── README.md
82
+ ├── audio/
83
+ │ ├── few/<file_id>.wav # 490
84
+ │ └── many/<file_id>.wav # 177
85
+ └── rttm/
86
+ ├── few/<file_id>.rttm # 490
87
+ └── many/<file_id>.rttm # 177
88
+ ```
89
+
90
+ Chaque ligne RTTM suit le format standard :
91
+ ```
92
+ SPEAKER <file_id> 1 <start_sec> <duration_sec> <NA> <NA> <speaker_id> <NA> <NA>
93
+ ```
94
+
95
+ ## Utilisation
96
+
97
+ ### Téléchargement
98
+ ```python
99
+ from huggingface_hub import snapshot_download
100
+ root = snapshot_download("ggfox00000/dia-MsdWild-test", repo_type="dataset")
101
+ # root/audio/few/*.wav, root/rttm/few/*.rttm, root/audio/many/*.wav, ...
102
+ ```
103
+
104
+ ### Évaluation DER (pyannote)
105
+ ```python
106
+ from pathlib import Path
107
+ from pyannote.audio import Pipeline
108
+ from pyannote.metrics.diarization import DiarizationErrorRate
109
+ from pyannote.database.util import load_rttm
110
+
111
+ pipe = Pipeline.from_pretrained("pyannote/speaker-diarization-3.1")
112
+
113
+ for subset in ("few", "many"):
114
+ metric = DiarizationErrorRate()
115
+ audio_dir = Path(root) / "audio" / subset
116
+ rttm_dir = Path(root) / "rttm" / subset
117
+ for wav in sorted(audio_dir.glob("*.wav")):
118
+ hyp = pipe(str(wav))
119
+ ref = next(iter(load_rttm(str(rttm_dir / f"{wav.stem}.rttm")).values()))
120
+ metric(ref, hyp)
121
+ print(f"{subset}: DER = {abs(metric):.3f}")
122
+ ```
123
+
124
+ ## Source
125
+
126
+ - MSDWild — Liu et al. 2022
127
+ https://github.com/X-LANCE/MSDWILD
128
+ https://x-lance.github.io/MSDWILD
129
+
130
+ ## Licence
131
+
132
+ **CC-BY-NC-4.0** — usage **non commercial**, recherche uniquement. Se référer
133
+ à l'accord de licence MSDWild upstream
134
+ (`MSDWILD_license_agreement.pdf`) avant toute réutilisation.
135
+
136
+ ## Citation
137
+
138
+ ```bibtex
139
+ @inproceedings{liu22t_interspeech,
140
+ author = {Tao Liu and Shuai Fan and Xu Xiang and Hongbo Song and Shaoxiong Lin and Jiaqi Sun and Tianyuan Han and Siyuan Chen and Binwei Yao and Sen Liu and Yifei Wu and Yanmin Qian and Kai Yu},
141
+ title = {{MSDWild: Multi-modal Speaker Diarization Dataset in the Wild}},
142
+ booktitle = {Interspeech},
143
+ year = {2022},
144
+ pages = {1476--1480},
145
+ doi = {10.21437/Interspeech.2022-10466},
146
+ }
147
+ ```
audio/few/00017.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0eb8ac788d5dc70d313537620e5c99aa7fb8cf7b89e80404c01ba85765a1a198
3
+ size 1457176
audio/few/00018.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ad5219b33c87ab6a48ef82aca283b305533d09a567e157ddbbab292289a3c7c
3
+ size 13264802
audio/few/00028.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11064b0f29b33a8869433a5bac65aa01c79d2d57954ee6ecf328ee27f1e96b99
3
+ size 1226834
audio/few/00029.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c70f5fc6eefa31b4ae59be7bab6ec805684a0bbf9e147f73966ad69c447697f4
3
+ size 12050678
audio/few/00036.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6e67be51cb96a8cc0c9cef1d33ce4ebeea08b03ed00467b9719f7bc83016f8d
3
+ size 2299040
audio/few/00053.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4b0e2b50947dbe49b614dcec3f738eea0491fdc603baa7a6e9587bdfc0ee07d
3
+ size 1018042
audio/few/00066.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75abf23d888bcb09636b3845a6cea693cfe582847bab85a637ef449e52bae15c
3
+ size 806276
audio/few/00073.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9ef9061642fbd6b0555182f733c063066354282c71df0ecfb313537cae5bf68
3
+ size 1090858
audio/few/00080.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b0fd46d4a395b467390128f8cd94664c9a369b9052e54999d569519f58e9faf
3
+ size 911044
audio/few/00084.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a4ceef04e048da96d06cb549e889b89017698269dc7642eede016e63657082f
3
+ size 934820
audio/few/00090.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d0196c568db3394a3ab800fe6001b2cf2eebe49c5436d4938866dddbb61a4f8
3
+ size 810734
audio/few/00091.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:230263b2eaa7beac2ee4ae9cb9f47f7e66bbf3bf5ececbe88b982187f5fe46ac
3
+ size 1764052
audio/few/00099.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3afc313a82690df8be636b27fe4e9303f3cb7efb33f699e1578fb3aceca9f4c
3
+ size 1689004
audio/few/00104.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f5b6756a6d6dfa66fee4d66ba16b444f0d93b621f11e4695a2274e32158e17d
3
+ size 3466354
audio/few/00133.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c04457ef0e2cbf99d5965e0e77e04bd71367335ee2ecf4d51bc5134f0d813bf
3
+ size 1231294
audio/few/00134.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bf2d230d047a76981e8670a23dc89857662808f8bc45f35867571870039bac2
3
+ size 1624360
audio/few/00142.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1c40099c5b4ce6fd0c6432aa5b261463be72746ebb354f785a9a86ceaebf480
3
+ size 1808634
audio/few/00143.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e7681ba04bbac5ce98e4d9af2b67e504e7baf6472fd11209ccda0e9281caf04
3
+ size 1211974
audio/few/00144.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6fa54759eb728aa2a70b10a74aa9dbe9ed78b30f69e2300d25dd7c5a93bd841
3
+ size 946710
audio/few/00169.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:959579e2e0f05c0aa28c9924cc5e2f76c2999db6baa6cb568037df2da469a3a2
3
+ size 3793290
audio/few/00177.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3836789c23c123652538a16ec9b19194862b1aa994c84e3a979891401a785ab
3
+ size 1157732
audio/few/00180.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f4bcf64cac11e1acaa23e54f565325f5d4aeb56aa0a4fc298920635c8d83783
3
+ size 904356
audio/few/00190.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d1b383442c8191801edac6381126d69c46546caa704537f889cb2f204437eae
3
+ size 783984
audio/few/00198.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2220feb84daeb7c222016200b0c42c1c4e0630e77f65a897e39068abbbed10e3
3
+ size 1673402
audio/few/00200.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d91b4f2813dafe26a608a4665391b9171fe55173a810fedb7a84938a085fdc45
3
+ size 1414824
audio/few/00208.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:323809b72c37df3b5ab18a1f048dea04ef2759386fcc6e59f06c4273d19da4df
3
+ size 2452848
audio/few/00215.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e075b7818eba303ff2cdc737eeea9a70278944ea7d9ede86dbf8f7bd2a9832d
3
+ size 663612
audio/few/00222.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a00d16daad0bb8d499aa2e606ac8219d7b5dd28b4141fb0a7480fe271fa81d1
3
+ size 2252972
audio/few/00225.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65b81bdfc2a8e76b6ea5fd5ef2ddca6608c5a2006d3324205112f9b70436432e
3
+ size 885780
audio/few/00227.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df20d2824a9919d4541884fa9a6a506b44bd33fb227789203c386a603e274767
3
+ size 1237980
audio/few/00233.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4f80d0045d60c828e2f6e4aebd6beef0d817afb37afa89170915a3c8eb6b316
3
+ size 885780
audio/few/00235.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d46c6680b735472dbd22f293102b063f9040bbcca35f9c3293bce7363c70538
3
+ size 695716
audio/few/00239.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ecc77d0c8ff498af758287bb007c83cd1fcf98c1d79a778dbb69cf1f9e963817
3
+ size 646522
audio/few/00240.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:adec452126c6ffdba27f27a68057eb0415ef46dc37d3a22602aeca4e3aa69506
3
+ size 796616
audio/few/00241.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d613a4b25cad1cc8ce811dc88ebed61e0a01fc6bdb1c6c8018b2590e8e125ec3
3
+ size 18065574
audio/few/00242.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7574ad89b0238165f157a737755208686ddcaaa380ea83ff346948d420ba444f
3
+ size 1468322
audio/few/00246.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7423ee8d7df6d7c834cf9c3b79516fecd7cdc163071eb3d4b9d8f8933f0f87c8
3
+ size 796616
audio/few/00250.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c480ef470c1c6fa60fdf4e79298f3be57aeb29221da023846461ee7a2dbd669b
3
+ size 1982506
audio/few/00277.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d64bbf1ea0aaede976bbcb1db737ce313b4c6c421e8f46bd0c01a50cebc242e
3
+ size 1495072
audio/few/00282.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7213a078c6384cc1f05adb3dfc2a0b98e8cc453e9f3866bc442ac8402fe0f46
3
+ size 1987706
audio/few/00284.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d90cf59626d2aa55bda6d190124000c8be127ffaaaa32561457a75a6868f16c4
3
+ size 1000208
audio/few/00297.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c0ace5a44d216827205d36c0b5dccd0a5552dfe63d3f125bf6d1804663ab974
3
+ size 807762
audio/few/00298.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37cbfdf02eab098af1e6068d6dc9e538c4e5fdf96706c23459d362efb9107459
3
+ size 1090858
audio/few/00302.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe5c98952bfab30aaa20b251d7efe278fbd01ea196221f061819f133aee67320
3
+ size 768380
audio/few/00313.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c9a542192a2b1a9ea3f9f875170557fb7fb374260970beaa888412b2a53d3bf
3
+ size 886524
audio/few/00328.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f61c47733a5376369a6d95e284ecdf265251d3511b3c1f475c0dd8204126905c
3
+ size 2997496
audio/few/00329.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:553c0d992aee17a109b451c8e2b1ebab7eddd963a0daf80409860a5c65a6471d
3
+ size 880580
audio/few/00332.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fd3ab7105e7d401358b08162e21eb18d0c993599d3da8e436be64c2c22bc578
3
+ size 876120
audio/few/00341.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0189dee59e623258a0a8055b9b6ac530aee800ead6af88b8ef62320f535a005
3
+ size 2330990