DJRHails commited on
Commit
6bb6d75
·
verified ·
1 Parent(s): 6e9c308

Add provenance README

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ pretty_name: VoxCeleb2 speaker-id to celebrity-name mapping
6
+ tags:
7
+ - voxceleb
8
+ - speaker-identification
9
+ - metadata
10
+ ---
11
+
12
+ # VoxCeleb2 dev speaker names
13
+
14
+ Maps each of the 5,994 VoxCeleb2 dev speaker ids (`id00012`...`id09272`) to a
15
+ celebrity name with a confidence grade and the evidence behind it.
16
+
17
+ ## Provenance
18
+
19
+ Two independent routes, cross-checked:
20
+
21
+ - **YouTube titles** (`youtube-title` source): titles of the first two YouTube
22
+ videos per speaker, fetched via the YouTube oEmbed API, with names extracted
23
+ and graded per title; a reserved third video was fetched only to adjudicate
24
+ conflicts.
25
+ - **VGGFace2 identity_meta** (`vggface2` source): the authoritative
26
+ VGGFace2 `identity_meta.csv` names joined to VoxCeleb2 ids via
27
+ `vox2_meta.csv` (VoxCeleb2 identities are a subset of VGGFace2).
28
+
29
+ Route agreement over the 5,994 speakers: **agree = 4,691**, **conflict = 137**,
30
+ **vgg_only = 1,166** (VGGFace2 name, titles gave no usable evidence),
31
+ **yt_only = 0**, **unresolved = 0**. 69 of the 137 conflicts were manually
32
+ adjudicated with third-video evidence (source `adjudication`); the remaining 68
33
+ stay unnamed. A 40-speaker random spot-check found 37/40 fully consistent; the
34
+ 3 flagged speakers (id00783 interviewer-vs-guest risk, id03812 own-channel
35
+ inference only, id07169 first-name-only title) are downgraded to `low`.
36
+
37
+ ## Records
38
+
39
+ `voxceleb2_names_full.json`: `{"idXXXXX": {"name": str|null, "confidence":
40
+ "high"|"medium"|"low", "sources": [...], "evidence": str}}`.
41
+
42
+ - `high` — both routes agree, or adjudicated with strong third-video evidence
43
+ (4,720 speakers)
44
+ - `medium` — VGGFace2-only, authoritative but title-unconfirmed (1,166)
45
+ - `low` — adjudicated on weaker evidence or spot-check-flagged (26 named);
46
+ 82 speakers remain `name: null` (68 unadjudicated conflicts, 14 adjudicated
47
+ to null)
48
+
49
+ Coverage: **5,912 / 5,994 speakers named (98.6%)**.
50
+
51
+ Consumed by [voxpath](https://github.com/DJRHails/voxpath) as the committed
52
+ compact asset `src/voxpath/data/voxceleb2_names.json` (name + confidence only),
53
+ attached to corpus per-speaker metadata.