sendfuze commited on
Commit
6351b36
·
verified ·
1 Parent(s): 88d3bf5

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. CHANGELOG.md +14 -0
  2. CITATION.cff +27 -0
  3. DATASHEET.md +142 -0
  4. LICENSE +19 -0
  5. LICENSE-CODE +11 -0
  6. README.md +181 -0
  7. code/README.md +87 -0
  8. code/benchmark_analysis.ipynb +0 -0
  9. code/extract_ecapa_tdnn.py +39 -0
  10. code/extract_hubert.py +43 -0
  11. code/extract_rawnet3_embeddings.py +242 -0
  12. code/extract_resemblyzer.py +33 -0
  13. code/extract_ssl_layers.py +131 -0
  14. code/extract_titanet.py +39 -0
  15. code/extract_wav2vec2.py +45 -0
  16. code/extract_wavlm.py +43 -0
  17. code/extract_whisper.py +41 -0
  18. code/extract_xlsr.py +43 -0
  19. code/extract_xvector.py +42 -0
  20. code/extraction_utils.py +167 -0
  21. code/reproduce.sh +33 -0
  22. code/run_all_extractions.sh +55 -0
  23. croissant.json +445 -0
  24. data/participant_responses.csv +0 -0
  25. data/speakers.csv +101 -0
  26. data/stimuli.csv +0 -0
  27. data/stimuli_interpol.csv +0 -0
  28. docs/annotation_protocol.md +54 -0
  29. docs/data_dictionary.md +110 -0
  30. docs/model_table.md +43 -0
  31. docs/reproduction.md +108 -0
  32. docs/stimulus_types.md +46 -0
  33. requirements.txt +34 -0
  34. samples/README.md +71 -0
  35. samples/audio/reference/F06R.wav +3 -0
  36. samples/audio/reference/F16R.wav +3 -0
  37. samples/audio/reference/M11R.wav +3 -0
  38. samples/embeddings/ecapa_tdnn.npz +3 -0
  39. samples/embeddings/hubert.npz +3 -0
  40. samples/embeddings/rawnet3.npz +3 -0
  41. samples/embeddings/resemblyzer.npz +3 -0
  42. samples/embeddings/titanet.npz +3 -0
  43. samples/embeddings/wav2vec2.npz +3 -0
  44. samples/embeddings/wavlm.npz +3 -0
  45. samples/embeddings/whisper.npz +3 -0
  46. samples/embeddings/xlsr.npz +3 -0
  47. samples/embeddings/xvector.npz +3 -0
  48. samples/participant_responses.csv +0 -0
  49. samples/speakers.csv +6 -0
  50. samples/stimuli.csv +491 -0
CHANGELOG.md ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Changelog
2
+
3
+ ## v1.0 (2026-05-06)
4
+
5
+ Initial release for NeurIPS 2026 Evaluations & Datasets Track submission.
6
+
7
+ - 124,876 listener judgments from 1,290 English-speaking participants on 9,800 voice pairs across 100 speakers.
8
+ - 9,900 audio files: 100 reference clips + 9,800 comparison clips (16 kHz mono WAV).
9
+ - Pre-extracted embeddings for 10 speech models: x-vector, ECAPA-TDNN, RawNet3, TitaNet, resemblyzer (supervised); wav2vec 2.0, HuBERT, WavLM, XLS-R (self-supervised); Whisper (weakly supervised).
10
+ - Per-layer mean-pooled embeddings for the 5 SSL models.
11
+ - Croissant 1.0 metadata with both core and Responsible AI fields.
12
+ - Datasheet for Datasets, annotation protocol, and reproduction documentation.
13
+
14
+ Anonymized for double-blind review. Author identities and DOI to be added at camera-ready.
CITATION.cff ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cff-version: 1.2.0
2
+ message: "If you use VIPBench in your research, please cite the accompanying NeurIPS 2026 paper."
3
+ title: "VIPBench: A Human-Aligned Benchmark for Voice Identity Perception in the Age of Voice Cloning"
4
+ abstract: "VIPBench is a benchmark of 124,876 same/different identity judgments from 1,290 English-speaking listeners on 9,800 voice pairs across 100 speakers, spanning real recordings, AI voice clones, and continuously morphed voices. The release includes audio, listener judgments, and pre-extracted embeddings for ten speaker and speech-representation models. Four evaluation tasks measure model alignment with human voice-identity perception."
5
+ type: dataset
6
+ authors:
7
+ - family-names: "Anonymous"
8
+ given-names: "Authors"
9
+ affiliation: "Withheld for double-blind review"
10
+ license: CC-BY-NC-4.0
11
+ version: "1.0"
12
+ date-released: "2026-05-06"
13
+ keywords:
14
+ - speaker embeddings
15
+ - voice identity perception
16
+ - human-aligned benchmark
17
+ - voice cloning
18
+ - perceptual evaluation
19
+ preferred-citation:
20
+ type: conference-paper
21
+ title: "VIPBench: A Human-Aligned Benchmark for Voice Identity Perception in the Age of Voice Cloning"
22
+ authors:
23
+ - family-names: "Anonymous"
24
+ given-names: "Authors"
25
+ collection-title: "Advances in Neural Information Processing Systems Datasets and Benchmarks (NeurIPS Evaluations and Datasets Track)"
26
+ year: 2026
27
+ notes: "Anonymized for double-blind review. Author identities and DOI to be added at camera-ready."
DATASHEET.md ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Datasheet for VIPBench
2
+
3
+ Following the structure of Gebru et al. 2021, "Datasheets for Datasets" (Communications of the ACM 64(12)).
4
+
5
+ ## Motivation
6
+
7
+ **For what purpose was the dataset created?**
8
+ To benchmark whether speaker-embedding and speech-representation models align with human voice-identity perception. Existing speaker benchmarks evaluate against a metadata speaker label (who produced the recording); this dataset measures whether listeners hear two voices as the same speaker, which can diverge from the metadata label especially under voice cloning and voice morphing.
9
+
10
+ **Who created the dataset and on behalf of which entity?**
11
+ Withheld for double-blind review. Will be filled in at camera-ready.
12
+
13
+ **Who funded the creation of the dataset?**
14
+ Withheld for double-blind review.
15
+
16
+ ## Composition
17
+
18
+ **What do the instances represent?**
19
+ Each instance is a voice pair (one reference audio clip plus one comparison audio clip) annotated with same-or-different-speaker judgments collected from human listeners.
20
+
21
+ **How many instances are there?**
22
+ 9,800 voice pairs, 124,876 listener judgments, 1,290 listeners, 100 speakers, 9,900 audio files (100 reference + 9,800 comparison).
23
+
24
+ **Does the dataset contain all possible instances or is it a sample?**
25
+ It is a designed sample. 100 speakers were selected to balance 5 sociophonetic groups x 2 genders x 2 age brackets, 5 speakers per cell. Pairs were sampled to cover six stimulus types: same recording, same speaker different recording, same speaker AI clone, different speaker different recording, different speaker AI clone, and continuously morphed pairs.
26
+
27
+ **What data does each instance consist of?**
28
+ - A reference audio clip (16 kHz mono WAV, ~6 seconds).
29
+ - A comparison audio clip (16 kHz mono WAV, similar duration).
30
+ - Per-pair aggregates (`stimuli.csv`): stimulus type, source speaker(s), morph scale (Type 6 only), counts of same/different votes, accuracy against the metadata label, derived `P(same)`.
31
+ - Per-judgment records (`participant_responses.csv`): listener ID, stimulus ID, binary same/different answer, listener-recognition flag, listener demographics (age band, gender, first language).
32
+
33
+ **Is there a label or target associated with each instance?**
34
+ The primary target is the human consensus `P(same)` per pair. A binary majority-vote label (`y = 1[P(same) > 0.5]`) is also supplied. The ground-truth metadata speaker label is included for reference.
35
+
36
+ **Is any information missing from individual instances?**
37
+ Listener demographics include age band (categorical), gender, and first-language flag. Detailed listener demographics or browser/device information are not included. The `know_speaker` field is missing for some early-trial responses; trials with the listener flagging recognition are still released and noted.
38
+
39
+ **Are relationships between individual instances made explicit?**
40
+ Yes. `stimuli.csv` indexes pairs by reference and comparison speaker IDs; `participant_responses.csv` indexes by listener ID and stimulus ID. The 9,900-key embedding files use the audio basename as key, allowing exact join with `stimuli.csv.id`.
41
+
42
+ **Are there recommended data splits?**
43
+ Speaker-level cross-validation (10 folds, gender-balanced 5M+5F per fold) is recommended to avoid speaker leakage. The benchmark protocol uses speaker-level GroupKFold throughout.
44
+
45
+ **Are there any errors, sources of noise, or redundancies?**
46
+ Identity perception is intrinsically noisy: split-half Spearman-Brown reliability of `P(same)` is rho_SB = 0.705, bounding any model's correlation against the observed target. Voice clones and mid-morph stimuli are designed to be ambiguous, so consensus is itself probabilistic.
47
+
48
+ **Is the dataset self-contained or does it link to external resources?**
49
+ Self-contained for evaluation: audio, judgments, and pre-extracted embeddings are bundled. Pretrained model weights are downloaded from Hugging Face / model hubs by the extraction scripts; their checkpoint identifiers are fixed in `docs/model_table.md`.
50
+
51
+ **Does the dataset contain confidential data?**
52
+ No. Listener identifiers are pseudonymized integers tied to no external account. Speaker names are public figures whose recordings are publicly available.
53
+
54
+ **Does the dataset contain offensive, insulting, or threatening content?**
55
+ No. Stimuli are conversational speech.
56
+
57
+ ## Collection process
58
+
59
+ **How was the data acquired?**
60
+ - Reference audio: selected from publicly available recordings (interviews, podcasts) of 100 US celebrities.
61
+ - Comparison audio: a mix of additional clips of the same speakers, AI voice clones generated with a state-of-the-art TTS system from a short reference clip per speaker, and continuously morphed pairs sweeping a voice-conversion latent.
62
+ - Judgments: 1,290 adult English-speaking listeners recruited via the Centaur AI platform. Each pair received at least 8 judgments.
63
+
64
+ **What mechanisms or procedures were used to collect the data?**
65
+ Listeners heard each pair as a single audio clip (reference + 1 second silence + short beep + comparison) and answered (a) whether the two clips came from the same speaker (binary) and (b) optionally identified which of four within-group celebrities or "I don't know" they recognized in the reference.
66
+
67
+ **Who was involved in the data collection process?**
68
+ Listeners were paid via the Centaur AI platform per the platform's standard rate, which meets minimum-wage requirements in the country of data collection. The annotation protocol was approved by an Institutional Review Board.
69
+
70
+ **Over what time frame was the data collected?**
71
+ Stimulus creation and listening study were conducted between 2025 and 2026.
72
+
73
+ **Were any ethical review processes conducted?**
74
+ Yes. Both the clone generation (from publicly available celebrity speech) and the human-annotation study were covered under IRB review. Participant consent followed the platform's standard consent pipeline.
75
+
76
+ ## Preprocessing, cleaning, labeling
77
+
78
+ **Was preprocessing or cleaning done?**
79
+ - Audio was resampled to 16 kHz mono.
80
+ - Listener responses were checked against attention-check probes; per-listener qualification flags are included in `participant_responses.csv`.
81
+ - The `reorganized_stimuli.csv` aggregates count same/different votes per pair.
82
+
83
+ **Is the raw data saved?**
84
+ Pre-resampling source audio is not included in the release; the IRB-covered raw participant responses are included as `participant_responses.csv`.
85
+
86
+ ## Uses
87
+
88
+ **Has the dataset been used for any tasks already?**
89
+ Yes. The accompanying NeurIPS 2026 paper benchmarks 10 publicly available speaker and speech-representation models against the four evaluation tasks (continuous `P(same)` prediction, binary verification, RSA, real-to-synthetic transfer).
90
+
91
+ **Is there a repository linking to papers using the dataset?**
92
+ Will be maintained at the public repository to be created at camera-ready.
93
+
94
+ **What other tasks could the dataset be used for?**
95
+ - Listener-conditioned identity modeling.
96
+ - Voice-clone perceptual evaluation for TTS development (under the non-commercial license).
97
+ - Calibration and uncertainty estimation in speaker verification.
98
+ - Cross-language perception research, using these stimuli as a comparison anchor.
99
+
100
+ **Is there anything that should not be done with the dataset?**
101
+ - Do not use the audio, judgments, or derived embeddings for commercial purposes (CC-BY-NC 4.0).
102
+ - Do not extract clone-generation recipes from the released audio. The benchmark intentionally does not release voice-conversion or TTS training targets.
103
+ - Do not deanonymize listeners.
104
+
105
+ ## Distribution
106
+
107
+ **Will the dataset be distributed to third parties?**
108
+ Yes, openly via Hugging Face under CC-BY-NC 4.0.
109
+
110
+ **How will it be distributed?**
111
+ Hugging Face dataset (anonymized URL during review, permanent URL at camera-ready). Croissant metadata accompanies the release.
112
+
113
+ **When will it be distributed?**
114
+ Initial public release: 2026-05-06 (NeurIPS submission).
115
+
116
+ **Will the dataset be distributed under a copyright or other intellectual property license?**
117
+ - Audio, judgments, and embeddings: CC-BY-NC 4.0.
118
+ - Code: MIT.
119
+ - Pretrained model weights retain their original licenses.
120
+
121
+ **Have any third parties imposed restrictions on the data?**
122
+ No.
123
+
124
+ ## Maintenance
125
+
126
+ **Who will maintain the dataset?**
127
+ The authors. Contact information will be filled in at camera-ready.
128
+
129
+ **How can the maintainers be contacted?**
130
+ A mailing address will be provided at camera-ready. During review, author identification is withheld.
131
+
132
+ **Is there an erratum?**
133
+ Not yet. Errata will be tracked in `CHANGELOG.md`.
134
+
135
+ **Will the dataset be updated?**
136
+ Yes. Updates will be versioned. Older versions will remain accessible.
137
+
138
+ **Will older versions of the dataset continue to be supported?**
139
+ Yes, by maintaining tagged releases on the public repository.
140
+
141
+ **If others want to extend the dataset, is there a mechanism for them to do so?**
142
+ Yes. Researchers can collect additional listener judgments using the protocol documented in `docs/annotation_protocol.md` and contribute via the public repository (instructions to be added at camera-ready).
LICENSE ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ VIPBench dataset is licensed under the Creative Commons Attribution-NonCommercial 4.0 International License (CC-BY-NC 4.0).
2
+
3
+ Full license text: https://creativecommons.org/licenses/by-nc/4.0/legalcode
4
+ Human-readable summary: https://creativecommons.org/licenses/by-nc/4.0/
5
+
6
+ Under this license you are free to:
7
+ Share: copy and redistribute the material in any medium or format.
8
+ Adapt: remix, transform, and build upon the material.
9
+
10
+ Under the following terms:
11
+ Attribution: You must give appropriate credit, provide a link to the license, and indicate if changes were made.
12
+ NonCommercial: You may not use the material for commercial purposes.
13
+ No additional restrictions: You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
14
+
15
+ This license applies to the audio files (reference, comparison, voice clones, voice morphs), human listener judgments, per-pair aggregates, speaker metadata, and pre-extracted embeddings distributed in this repository.
16
+
17
+ Pretrained model weights loaded by the extraction scripts in code/ retain their original licenses; see docs/model_table.md.
18
+
19
+ The code in code/ is licensed under the MIT License; see LICENSE-CODE.
LICENSE-CODE ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2026 VIPBench contributors (anonymized for NeurIPS 2026 double-blind review)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
10
+
11
+ This license applies only to the source code in code/. The dataset (audio, judgments, embeddings, metadata) is licensed separately under CC-BY-NC 4.0; see LICENSE.
README.md ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ language:
4
+ - en
5
+ pretty_name: VIPBench
6
+ size_categories:
7
+ - 100K<n<1M
8
+ tags:
9
+ - speaker-recognition
10
+ - voice-identity
11
+ - voice-cloning
12
+ - human-perception
13
+ - benchmark
14
+ - audio
15
+ task_categories:
16
+ - audio-classification
17
+ - other
18
+ ---
19
+
20
+ # VIPBench: A Human-Aligned Benchmark for Voice Identity Perception in the Age of Voice Cloning
21
+
22
+ VIPBench is a benchmark of **124,876 same/different identity judgments** from **1,290 English-speaking listeners** on **9,800 voice pairs** spanning **100 demographically-stratified speakers**. Pairs cover three stimulus families: real recordings, AI voice clones generated by a state-of-the-art TTS system, and continuously morphed voices.
23
+
24
+ The benchmark evaluates whether speaker-embedding and speech-representation models align with human voice-identity perception, providing a perceptual evaluation target distinct from metadata-label speaker identification.
25
+
26
+ > **Anonymized release for NeurIPS 2026 Evaluations & Datasets Track double-blind review.**
27
+ > Author identities and permanent URLs will be added at camera-ready.
28
+
29
+ ---
30
+
31
+ ## Dataset summary
32
+
33
+ | Item | Count |
34
+ |---|---|
35
+ | Speakers | 100 (50 M / 50 F, 5 sociophonetic groups, 2 age brackets) |
36
+ | Reference audio clips | 100 (one per speaker) |
37
+ | Comparison audio clips | 9,800 (98 per speaker) |
38
+ | Voice pairs | 9,800 |
39
+ | Listener judgments | 124,876 |
40
+ | Listeners | 1,290 |
41
+ | Median judgments per pair | 10 (range 8 to 92) |
42
+ | Stimulus types | 6 (real same/different, AI clones, voice morphs) |
43
+ | Pre-extracted speaker embeddings | 10 models |
44
+ | Per-layer SSL embeddings | 5 models |
45
+
46
+ ## Supported tasks
47
+
48
+ The benchmark defines four evaluation tasks:
49
+
50
+ 1. **Predict listener agreement rate** (continuous regression). Predict `P(same)` per pair. Metric: Pearson r, R^2 against the human consensus, bounded by the Spearman-Brown noise ceiling rho_SB = 0.705.
51
+ 2. **Human-aligned binary verification**. Classify pairs against the human majority vote. Metrics: AUC (ranking) and Platt-calibrated ECE (calibration).
52
+ 3. **Representational similarity (RSA)**. Spearman correlation between human and model representational dissimilarity matrices, with a Mantel permutation test.
53
+ 4. **Real-to-synthetic transfer**. Whether a predictor fit on real-speech pairs still works on voice clones and morphs.
54
+
55
+ A 10-fold gender-balanced speaker-level cross-validation protocol prevents speaker leakage.
56
+
57
+ ## Dataset structure
58
+
59
+ ```
60
+ data/
61
+ speakers.csv # 100 rows: speaker id, name, group, gender, age
62
+ stimuli.csv # 9,800 rows: per-pair aggregates (P(same), votes, type)
63
+ participant_responses.csv # 124,876 rows: per-judgment records
64
+ stimuli_interpol.csv # 8,100 rows: morph-trajectory metadata for Type 6
65
+ audio/
66
+ reference/ # 100 *R.wav (16 kHz mono)
67
+ comparison/ # 9,800 *.wav
68
+ embeddings/
69
+ rawnet3.npz, ecapa_tdnn.npz, titanet.npz, xvector.npz, resemblyzer.npz,
70
+ wav2vec2.npz, hubert.npz, wavlm.npz, xlsr.npz, whisper.npz
71
+ layers/ # per-layer (mean-pooled) for SSL models
72
+ wav2vec2.npz, hubert.npz, wavlm.npz, xlsr.npz, whisper.npz
73
+ samples/ # 5-speaker quick-look subset (~150 MB)
74
+ code/ # 10 extraction scripts + analysis notebook + reproduce.sh
75
+ docs/ # annotation protocol, schemas, model table, reproduction
76
+ ```
77
+
78
+ For column-level dictionaries see `docs/data_dictionary.md`. For the six stimulus types see `docs/stimulus_types.md`. For the listening-study protocol see `docs/annotation_protocol.md`.
79
+
80
+ ### Embedding format
81
+
82
+ Each `.npz` is a key-value store keyed by audio basename without the `.wav` extension (e.g., `M01R`, `1_F01`, `4_M12_M15B`). Values are numpy arrays of shape `(embedding_dim,)` for the 10 main embeddings and `(num_layers, embedding_dim)` for the per-layer bundles. The 9,900 keys cover 100 references plus 9,800 comparisons.
83
+
84
+ ### Pairing reference and comparison
85
+
86
+ Each row of `data/stimuli.csv` represents one voice pair. The `reference` column gives the reference speaker ID (e.g., `M01`) and the `id` column gives the stimulus identifier of the comparison clip (e.g., `1_M01`, `4_M12_M15B`). The pairing rule is:
87
+
88
+ | You want | Reference clip | Comparison clip |
89
+ |---|---|---|
90
+ | Audio file | `data/audio/reference/{row.reference}R.wav` | `data/audio/comparison/{row.id}.wav` |
91
+ | Embedding key | `{row.reference}R` (e.g., `M01R`) | `{row.id}` (e.g., `1_M01`) |
92
+
93
+ Cosine-similarity scoring against `P(same)`:
94
+
95
+ ```python
96
+ import numpy as np, pandas as pd
97
+ from sklearn.metrics.pairwise import cosine_similarity
98
+
99
+ stim = pd.read_csv('data/stimuli.csv')
100
+ emb = dict(np.load('data/embeddings/ecapa_tdnn.npz'))
101
+
102
+ stim['cos'] = stim.apply(
103
+ lambda r: cosine_similarity(
104
+ emb[f'{r.reference}R'].reshape(1, -1),
105
+ emb[r.id].reshape(1, -1)
106
+ )[0, 0],
107
+ axis=1,
108
+ )
109
+ stim['p_same'] = stim['same_vote'] / stim['num_response']
110
+ print(stim[['cos', 'p_same']].corr()) # Pearson r against listener consensus
111
+ ```
112
+
113
+ ## Quick start
114
+
115
+ ```bash
116
+ pip install -r requirements.txt
117
+ cd code && bash reproduce.sh # ~10 min from cached embeddings
118
+ ```
119
+
120
+ To re-extract embeddings from the audio (~24 CPU-hours plus ~1 GPU-hour for Whisper), see `docs/reproduction.md`.
121
+
122
+ ## Source data and collection
123
+
124
+ - **Speakers.** 100 English-speaking US celebrities stratified across 5 sociophonetic groups (Italian-American, African-American, Asian-American, Latinx, mainstream Standard American English) x 2 genders x 2 age brackets, 5 speakers per cell.
125
+ - **Reference audio.** Clips selected from publicly available recordings (interviews, podcasts).
126
+ - **Voice clones.** Generated with a state-of-the-art TTS system (Cartesia Sonic) from a short reference clip per speaker.
127
+ - **Voice morphs.** Continuously morphed pairs sweeping a voice-conversion latent between two source speakers, sampled at 11 levels per pair.
128
+ - **Listeners.** 1,290 adult English-speaking participants recruited via the Centaur AI platform under an IRB-approved protocol. Consent followed the platform's standard pipeline.
129
+
130
+ Each pair received at least 8 judgments; real-speech pairs (Types 1, 2, 4) received more coverage than synthetic pairs to give tighter consensus estimates on the real-speech reference distribution.
131
+
132
+ ## Considerations for use
133
+
134
+ ### Personally identifying information
135
+
136
+ The dataset names public-figure speakers because the celebrity-stratified design is integral to the benchmark and source recordings are already public. Listener identifiers in `participant_responses.csv` are pseudonymized integers tied to no external account.
137
+
138
+ ### Biases and limitations
139
+
140
+ - English-speaking listener pool, US-dialect speakers. Cross-language perception is not measured.
141
+ - 100 speakers limits statistical power for some subgroup contrasts (20 speakers per sociophonetic group).
142
+ - Studio-quality audio. In-the-wild conditions (noise, codec compression, telephony) are not represented.
143
+ - The operational target is a population consensus, appropriate for ambiguous stimuli where any absolute identity label would itself be probabilistic.
144
+
145
+ ### Responsible use
146
+
147
+ The benchmark measures model-human alignment at the evaluation level. We do not release clone-generation recipes or adversarial training targets. Voice-cloning systems that better align with human perception could inform adversarial use; the same alignment knowledge also strengthens defenses (perception-aligned identity models can flag clones that metadata-based verification accepts).
148
+
149
+ ## License
150
+
151
+ - **Dataset (audio, judgments, metadata, embeddings):** Creative Commons Attribution-NonCommercial 4.0 International (CC-BY-NC 4.0). See `LICENSE`.
152
+ - **Code (scripts, notebook):** MIT License. See `LICENSE-CODE`.
153
+ - **Pretrained model weights** (loaded by extraction scripts): each baseline retains its original license; see `docs/model_table.md`.
154
+
155
+ Commercial use of the audio, judgments, or derived embeddings is not permitted under this license.
156
+
157
+ ## Citation
158
+
159
+ To be filled in at camera-ready.
160
+
161
+ ```
162
+ @inproceedings{vipbench2026,
163
+ title = {VIPBench: A Human-Aligned Benchmark for Voice Identity Perception in the Age of Voice Cloning},
164
+ author = {Anonymous},
165
+ booktitle = {Advances in Neural Information Processing Systems Datasets and Benchmarks},
166
+ year = {2026},
167
+ note = {Anonymized for double-blind review.}
168
+ }
169
+ ```
170
+
171
+ ## Files
172
+
173
+ - `README.md` (this file): dataset card.
174
+ - `LICENSE`: CC-BY-NC 4.0 full text.
175
+ - `LICENSE-CODE`: MIT full text for scripts.
176
+ - `croissant.json`: MLCommons Croissant 1.0 metadata (core + Responsible AI fields).
177
+ - `DATASHEET.md`: Datasheet for Datasets (Gebru et al. 2021).
178
+ - `CHANGELOG.md`: version history.
179
+ - `CITATION.cff`: machine-readable citation.
180
+ - `requirements.txt`: pinned Python dependencies.
181
+ - `data/`, `samples/`, `code/`, `docs/`: see structure section above.
code/README.md ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Code: extraction + analysis
2
+
3
+ This directory contains everything needed to (a) regenerate the pre-extracted embeddings from audio, and (b) reproduce the figures and tables in the accompanying NeurIPS 2026 paper.
4
+
5
+ ## Layout
6
+
7
+ ```
8
+ code/
9
+ extraction_utils.py # shared audio loading and save logic
10
+ extract_*.py # 10 per-model extraction scripts
11
+ extract_ssl_layers.py # per-transformer-layer extraction (5 SSL models)
12
+ run_all_extractions.sh # master runner
13
+ benchmark_analysis.ipynb # main analysis notebook (80 cells)
14
+ reproduce.sh # end-to-end reproduction (default: analysis only)
15
+ README.md # this file
16
+ ```
17
+
18
+ ## Quick start
19
+
20
+ ```bash
21
+ pip install -r ../requirements.txt
22
+ cd code
23
+ bash reproduce.sh
24
+ ```
25
+
26
+ `reproduce.sh` defaults to **analysis-only**: it executes the notebook against the embeddings already shipped in `../data/embeddings/`. This takes ~10 minutes on a laptop.
27
+
28
+ To re-extract embeddings from the audio:
29
+
30
+ ```bash
31
+ bash reproduce.sh --extract # ~24 CPU-hours + ~1 GPU-hour
32
+ ```
33
+
34
+ The notebook auto-resolves paths via `Path.cwd().parent`, so just open it from `code/` (`jupyter notebook benchmark_analysis.ipynb`) or run via the command above.
35
+
36
+ ## Path resolution
37
+
38
+ All scripts and the notebook expect the release directory layout:
39
+
40
+ ```
41
+ <VIPBENCH_ROOT>/
42
+ code/ <-- you are here
43
+ data/audio/reference/*.wav
44
+ data/audio/comparison/*.wav
45
+ data/embeddings/<model>.npz <-- output of extraction
46
+ data/embeddings/layers/<model>.npz <-- per-layer SSL output
47
+ ```
48
+
49
+ `extraction_utils._resolve_root()` picks the root via:
50
+
51
+ 1. `VIPBENCH_ROOT` environment variable (if set), else
52
+ 2. parent of the script's directory.
53
+
54
+ Override with `VIPBENCH_ROOT=/some/other/path bash reproduce.sh`.
55
+
56
+ ## Models
57
+
58
+ | Model | Script | HF checkpoint | Dim | Type |
59
+ |---|---|---|---|---|
60
+ | RawNet3 | `extract_rawnet3_embeddings.py` | espnet/voxcelebs12_rawnet3 | 192 | Supervised |
61
+ | ECAPA-TDNN | `extract_ecapa_tdnn.py` | speechbrain/spkrec-ecapa-voxceleb | 192 | Supervised |
62
+ | TitaNet | `extract_titanet.py` | nvidia/speakerverification_en_titanet_large | 192 | Supervised |
63
+ | x-vector | `extract_xvector.py` | speechbrain/spkrec-xvect-voxceleb | 512 | Supervised |
64
+ | resemblyzer | `extract_resemblyzer.py` | (bundled with package) | 256 | Supervised |
65
+ | wav2vec 2.0 | `extract_wav2vec2.py` | facebook/wav2vec2-base | 768 | SSL |
66
+ | HuBERT | `extract_hubert.py` | facebook/hubert-base-ls960 | 768 | SSL |
67
+ | WavLM | `extract_wavlm.py` | microsoft/wavlm-base-plus | 768 | SSL |
68
+ | XLS-R | `extract_xlsr.py` | facebook/wav2vec2-xls-r-300m | 1024 | SSL |
69
+ | Whisper | `extract_whisper.py` | openai/whisper-base (encoder) | 512 | Weakly supervised |
70
+
71
+ Per-layer mean-pooled embeddings for the 5 SSL models are produced by `extract_ssl_layers.py` and saved to `data/embeddings/layers/<model>.npz`.
72
+
73
+ ## Output format
74
+
75
+ Each `data/embeddings/<model>.npz` is a key-value store keyed by audio basename without `.wav` (e.g. `M01R`, `1_F01`). Values are 1-D `np.float32` arrays of shape `(embedding_dim,)`. The 9,900 keys cover 100 references plus 9,800 comparisons.
76
+
77
+ Per-layer bundles (`layers/<model>.npz`) use the same keys; values have shape `(num_layers, embedding_dim)`.
78
+
79
+ ## Notes
80
+
81
+ - TitaNet requires NVIDIA NeMo (`nemo_toolkit[asr]`); install is heavy (~5 GB). The line is commented out in `requirements.txt`.
82
+ - The notebook caches expensive computations under `code/cache/`. Delete `code/cache/` to force recompute.
83
+ - Models are downloaded from Hugging Face on first run; subsequent runs use the local cache.
84
+
85
+ ## License
86
+
87
+ Code in this directory is MIT-licensed (see `../LICENSE-CODE`). The dataset (audio, judgments, embeddings) is CC-BY-NC 4.0 (see `../LICENSE`).
code/benchmark_analysis.ipynb ADDED
The diff for this file is too large to render. See raw diff
 
code/extract_ecapa_tdnn.py ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Extract ECAPA-TDNN embeddings using SpeechBrain.
3
+
4
+ Model: speechbrain/spkrec-ecapa-voxceleb (supervised, AAM-Softmax, 192-dim)
5
+ Install: pip install speechbrain
6
+ """
7
+
8
+ import argparse
9
+ import torch
10
+ import numpy as np
11
+ from extraction_utils import load_audio, extract_all
12
+
13
+
14
+ def main():
15
+ parser = argparse.ArgumentParser()
16
+ parser.add_argument("--device", default="cuda" if torch.cuda.is_available() else "cpu")
17
+ parser.add_argument("--base-dir", default=None)
18
+ parser.add_argument("--output-dir", default=None)
19
+ args = parser.parse_args()
20
+
21
+ from speechbrain.inference.speaker import EncoderClassifier
22
+
23
+ print(f"Loading ECAPA-TDNN on {args.device}...")
24
+ classifier = EncoderClassifier.from_hparams(
25
+ source="speechbrain/spkrec-ecapa-voxceleb",
26
+ run_opts={"device": args.device},
27
+ )
28
+
29
+ def model_fn(audio_path):
30
+ audio = load_audio(audio_path, target_sr=16000)
31
+ signal = torch.tensor(audio).unsqueeze(0).to(args.device)
32
+ embedding = classifier.encode_batch(signal)
33
+ return embedding.squeeze().cpu().numpy()
34
+
35
+ extract_all(model_fn, "ecapa_tdnn", args.base_dir, args.output_dir)
36
+
37
+
38
+ if __name__ == "__main__":
39
+ main()
code/extract_hubert.py ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Extract HuBERT embeddings using HuggingFace Transformers.
3
+
4
+ Model: facebook/hubert-base-ls960 (self-supervised, 768-dim)
5
+ Frame-level output is mean-pooled to get utterance-level embeddings.
6
+ Install: pip install transformers
7
+ """
8
+
9
+ import argparse
10
+ import torch
11
+ import numpy as np
12
+ from extraction_utils import load_audio, extract_all
13
+
14
+
15
+ def main():
16
+ parser = argparse.ArgumentParser()
17
+ parser.add_argument("--device", default="cuda" if torch.cuda.is_available() else "cpu")
18
+ parser.add_argument("--base-dir", default=None)
19
+ parser.add_argument("--output-dir", default=None)
20
+ args = parser.parse_args()
21
+
22
+ from transformers import HubertModel, Wav2Vec2FeatureExtractor
23
+
24
+ print(f"Loading HuBERT-base on {args.device}...")
25
+ feature_extractor = Wav2Vec2FeatureExtractor.from_pretrained("facebook/hubert-base-ls960")
26
+ model = HubertModel.from_pretrained("facebook/hubert-base-ls960").to(args.device)
27
+ model.eval()
28
+
29
+ def model_fn(audio_path):
30
+ audio = load_audio(audio_path, target_sr=16000)
31
+ inputs = feature_extractor(audio, sampling_rate=16000, return_tensors="pt")
32
+ inputs = {k: v.to(args.device) for k, v in inputs.items()}
33
+ with torch.no_grad():
34
+ outputs = model(**inputs)
35
+ hidden = outputs.last_hidden_state # (1, T, 768)
36
+ embedding = hidden.mean(dim=1).squeeze().cpu().numpy()
37
+ return embedding
38
+
39
+ extract_all(model_fn, "hubert", args.base_dir, args.output_dir)
40
+
41
+
42
+ if __name__ == "__main__":
43
+ main()
code/extract_rawnet3_embeddings.py ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ Extract RawNet3 embeddings for all audio files.
4
+
5
+ This script extracts RawNet3 speaker embeddings for:
6
+ - 100 audio files ending with "R" in exp_2 directory (e.g., F01R.wav)
7
+ - 9,800 audio files in output directory
8
+
9
+ The embeddings are saved in a dictionary format where:
10
+ - Key: filename without extension (e.g., "F01R")
11
+ - Value: RawNet3 embedding vector (numpy array)
12
+
13
+ Saved as both pickle (.pkl) and numpy (.npz) formats for flexibility.
14
+
15
+ Requirements:
16
+ - ESPnet-SPK: pip install espnet
17
+ - Or RawNet repository: git clone https://github.com/jungjee/RawNet.git
18
+ """
19
+
20
+ import os
21
+ import sys
22
+ import numpy as np
23
+ from pathlib import Path
24
+ import pickle
25
+ import warnings
26
+
27
+ warnings.filterwarnings('ignore')
28
+
29
+ # Try to import tqdm for progress bars, fallback to basic iteration if not available
30
+ try:
31
+ from tqdm import tqdm
32
+ except ImportError:
33
+ def tqdm(iterable, desc=None):
34
+ if desc:
35
+ print(f"\nProcessing {desc}...")
36
+ return iterable
37
+
38
+ # Try to import ESPnet first (preferred method)
39
+ try:
40
+ from espnet2.bin.spk_inference import Speech2Embedding
41
+ ESPNET_AVAILABLE = True
42
+ print("ESPnet-SPK is available")
43
+ except ImportError:
44
+ ESPNET_AVAILABLE = False
45
+ print("ESPnet-SPK not available. Please install it:")
46
+ print(" pip install espnet")
47
+ print("Or set up the RawNet repository manually.")
48
+ sys.exit(1)
49
+
50
+
51
+ def load_audio(file_path, target_sr=16000):
52
+ """Load audio file and resample to target sample rate if needed."""
53
+ try:
54
+ # Try librosa first (most reliable)
55
+ try:
56
+ import librosa
57
+ audio, sr = librosa.load(file_path, sr=target_sr, mono=True)
58
+ # Audio is already in float32 format normalized to [-1, 1]
59
+ return audio.astype(np.float32)
60
+ except ImportError:
61
+ # Fallback to soundfile
62
+ import soundfile as sf
63
+ audio, sr = sf.read(file_path)
64
+
65
+ # Convert stereo to mono if needed
66
+ if len(audio.shape) > 1:
67
+ audio = np.mean(audio, axis=1)
68
+
69
+ # Resample if needed
70
+ if sr != target_sr:
71
+ import scipy.signal
72
+ num_samples = int(len(audio) * target_sr / sr)
73
+ audio = scipy.signal.resample(audio, num_samples)
74
+
75
+ # Ensure audio is in the correct format (float32, normalized to [-1, 1])
76
+ if audio.dtype != np.float32:
77
+ if audio.dtype == np.int16:
78
+ audio = audio.astype(np.float32) / 32768.0
79
+ elif audio.dtype == np.int32:
80
+ audio = audio.astype(np.float32) / 2147483648.0
81
+ else:
82
+ audio = audio.astype(np.float32)
83
+
84
+ # Normalize to [-1, 1] if needed
85
+ if np.max(np.abs(audio)) > 1.0:
86
+ audio = audio / np.max(np.abs(audio))
87
+
88
+ return audio.astype(np.float32)
89
+ except Exception as e:
90
+ print(f"Error loading {file_path}: {e}")
91
+ return None
92
+
93
+
94
+ def extract_embedding_espnet(audio_path, speech2spk_embed):
95
+ """Extract embedding using ESPnet."""
96
+ try:
97
+ audio = load_audio(audio_path)
98
+ if audio is None:
99
+ return None
100
+
101
+ # ESPnet expects numpy array (raw waveform, 16kHz, float32)
102
+ # The Speech2Embedding object handles the processing
103
+ embedding = speech2spk_embed(audio)
104
+
105
+ # Convert to numpy array if needed (ESPnet may return numpy or torch tensor)
106
+ if hasattr(embedding, 'cpu'): # torch.Tensor
107
+ embedding = embedding.cpu().numpy()
108
+ elif not isinstance(embedding, np.ndarray):
109
+ embedding = np.array(embedding)
110
+
111
+ return embedding.flatten()
112
+ except Exception as e:
113
+ print(f"Error extracting embedding with ESPnet from {audio_path}: {e}")
114
+ import traceback
115
+ traceback.print_exc()
116
+ return None
117
+
118
+
119
+ def main():
120
+ """Main function to extract embeddings for all audio files."""
121
+
122
+ print("=" * 80)
123
+ print("RawNet3 Embedding Extraction")
124
+ print("=" * 80)
125
+
126
+ # Initialize model
127
+ if not ESPNET_AVAILABLE:
128
+ print("\nERROR: ESPnet-SPK is not available.")
129
+ print("Please install ESPnet-SPK first:")
130
+ print(" pip install espnet")
131
+ print("\nThis script uses ESPnet-SPK's pre-trained RawNet3 model for easier access.")
132
+ sys.exit(1)
133
+
134
+ print("\nInitializing ESPnet RawNet3 model...")
135
+ try:
136
+ speech2spk_embed = Speech2Embedding.from_pretrained(
137
+ model_tag="espnet/voxcelebs12_rawnet3"
138
+ )
139
+ print("ESPnet RawNet3 model loaded successfully")
140
+ except Exception as e:
141
+ print(f"\nERROR: Failed to load ESPnet RawNet3 model: {e}")
142
+ print("\nThis may be due to:")
143
+ print(" 1. Network issues (model needs to be downloaded from HuggingFace)")
144
+ print(" 2. Missing dependencies")
145
+ print("\nPlease ensure you have a stable internet connection and try again.")
146
+ import traceback
147
+ traceback.print_exc()
148
+ sys.exit(1)
149
+
150
+ # Collect all audio files
151
+ print("\nCollecting audio files...")
152
+
153
+ from extraction_utils import collect_audio_files, DEFAULT_OUTPUT_DIR
154
+ exp_2_files, output_files = collect_audio_files()
155
+ print(f"Found {len(exp_2_files)} reference files (data/audio/reference/*R.wav)")
156
+ print(f"Found {len(output_files)} comparison files (data/audio/comparison/*.wav)")
157
+
158
+ total_files = len(exp_2_files) + len(output_files)
159
+ print(f"Total files to process: {total_files}")
160
+
161
+ if total_files == 0:
162
+ print("ERROR: No audio files found!")
163
+ sys.exit(1)
164
+
165
+ # Extract embeddings
166
+ print("\nExtracting embeddings...")
167
+ embeddings_dict = {}
168
+ failed_files = []
169
+
170
+ # Process exp_2 files
171
+ print("\nProcessing exp_2 files...")
172
+ for audio_path in tqdm(exp_2_files, desc="exp_2"):
173
+ # Get filename without extension (e.g., "F01R")
174
+ filename_key = audio_path.stem
175
+
176
+ try:
177
+ embedding = extract_embedding_espnet(audio_path, speech2spk_embed)
178
+
179
+ if embedding is not None:
180
+ embeddings_dict[filename_key] = embedding
181
+ else:
182
+ failed_files.append(str(audio_path))
183
+ except Exception as e:
184
+ print(f"\nError processing {audio_path}: {e}")
185
+ failed_files.append(str(audio_path))
186
+
187
+ # Process output files
188
+ print("\nProcessing output files...")
189
+ for audio_path in tqdm(output_files, desc="output"):
190
+ # Get filename without extension (e.g., "6_F01R_F02R_001")
191
+ filename_key = audio_path.stem
192
+
193
+ try:
194
+ embedding = extract_embedding_espnet(audio_path, speech2spk_embed)
195
+
196
+ if embedding is not None:
197
+ embeddings_dict[filename_key] = embedding
198
+ else:
199
+ failed_files.append(str(audio_path))
200
+ except Exception as e:
201
+ print(f"\nError processing {audio_path}: {e}")
202
+ failed_files.append(str(audio_path))
203
+
204
+ # Save embeddings
205
+ print("\nSaving embeddings...")
206
+
207
+ DEFAULT_OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
208
+ npz_path = DEFAULT_OUTPUT_DIR / "rawnet3.npz"
209
+ np.savez_compressed(npz_path, **embeddings_dict)
210
+ print(f"Saved embeddings to {npz_path}")
211
+
212
+ # Print summary
213
+ print("\n" + "=" * 80)
214
+ print("Summary")
215
+ print("=" * 80)
216
+ print(f"Total files processed: {total_files}")
217
+ print(f"Successfully extracted: {len(embeddings_dict)}")
218
+ print(f"Failed: {len(failed_files)}")
219
+
220
+ if failed_files:
221
+ print(f"\nFailed files (first 10):")
222
+ for f in failed_files[:10]:
223
+ print(f" {f}")
224
+ if len(failed_files) > 10:
225
+ print(f" ... and {len(failed_files) - 10} more")
226
+
227
+ print(f"\nEmbedding dimension: {list(embeddings_dict.values())[0].shape if embeddings_dict else 'N/A'}")
228
+ print(f"\nSaved files:")
229
+ print(f" - {pickle_path} (Python pickle format)")
230
+ print(f" - {npz_path} (NumPy compressed format)")
231
+ print("\nTo load embeddings later:")
232
+ print(f" import pickle")
233
+ print(f" with open('{pickle_path}', 'rb') as f:")
234
+ print(f" embeddings = pickle.load(f)")
235
+ print("\nOr:")
236
+ print(f" import numpy as np")
237
+ print(f" data = np.load('{npz_path}', allow_pickle=True)")
238
+ print(f" embeddings = {{k: data[k] for k in data.files}}")
239
+
240
+
241
+ if __name__ == "__main__":
242
+ main()
code/extract_resemblyzer.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Extract Resemblyzer (GE2E) embeddings.
3
+
4
+ Model: GE2E pre-trained speaker encoder (supervised, 256-dim)
5
+ Install: pip install resemblyzer
6
+ """
7
+
8
+ import argparse
9
+ import numpy as np
10
+ from extraction_utils import extract_all
11
+
12
+
13
+ def main():
14
+ parser = argparse.ArgumentParser()
15
+ parser.add_argument("--base-dir", default=None)
16
+ parser.add_argument("--output-dir", default=None)
17
+ args = parser.parse_args()
18
+
19
+ from resemblyzer import VoiceEncoder, preprocess_wav
20
+
21
+ print("Loading Resemblyzer GE2E encoder...")
22
+ encoder = VoiceEncoder()
23
+
24
+ def model_fn(audio_path):
25
+ wav = preprocess_wav(str(audio_path))
26
+ embedding = encoder.embed_utterance(wav) # (256,)
27
+ return embedding
28
+
29
+ extract_all(model_fn, "resemblyzer", args.base_dir, args.output_dir)
30
+
31
+
32
+ if __name__ == "__main__":
33
+ main()
code/extract_ssl_layers.py ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Extract per-layer embeddings from SSL speech models.
3
+
4
+ For wav2vec2, HuBERT, WavLM, XLS-R, and Whisper, the "last hidden state" used
5
+ in the main extraction is known to underperform for speaker tasks relative to
6
+ intermediate layers (see SUPERB benchmark). This script saves the mean-pooled
7
+ embedding from EVERY transformer layer, enabling layer-wise analysis.
8
+
9
+ Output format: for each audio file, a numpy array of shape (n_layers, dim).
10
+
11
+ Usage:
12
+ python3 extract_ssl_layers.py --model wav2vec2 --device cpu
13
+ python3 extract_ssl_layers.py --model hubert --device cpu
14
+ python3 extract_ssl_layers.py --model wavlm --device cpu
15
+ python3 extract_ssl_layers.py --model xlsr --device cpu
16
+ python3 extract_ssl_layers.py --model whisper --device cpu
17
+ """
18
+
19
+ import argparse
20
+ import numpy as np
21
+ import torch
22
+ from extraction_utils import load_audio, extract_all
23
+
24
+
25
+ HF_CONFIGS = {
26
+ 'wav2vec2': {
27
+ 'model_id': 'facebook/wav2vec2-base',
28
+ 'model_cls': 'Wav2Vec2Model',
29
+ 'fe_cls': 'Wav2Vec2FeatureExtractor',
30
+ },
31
+ 'hubert': {
32
+ 'model_id': 'facebook/hubert-base-ls960',
33
+ 'model_cls': 'HubertModel',
34
+ 'fe_cls': 'Wav2Vec2FeatureExtractor',
35
+ },
36
+ 'wavlm': {
37
+ 'model_id': 'microsoft/wavlm-base-plus',
38
+ 'model_cls': 'WavLMModel',
39
+ 'fe_cls': 'Wav2Vec2FeatureExtractor',
40
+ },
41
+ 'xlsr': {
42
+ 'model_id': 'facebook/wav2vec2-xls-r-300m',
43
+ 'model_cls': 'Wav2Vec2Model',
44
+ 'fe_cls': 'Wav2Vec2FeatureExtractor',
45
+ },
46
+ }
47
+
48
+
49
+ def build_hf_model_fn(model_name, device):
50
+ cfg = HF_CONFIGS[model_name]
51
+ import transformers
52
+ ModelCls = getattr(transformers, cfg['model_cls'])
53
+ FeCls = getattr(transformers, cfg['fe_cls'])
54
+ print(f"Loading {model_name} ({cfg['model_id']}) on {device}...")
55
+ feature_extractor = FeCls.from_pretrained(cfg['model_id'])
56
+ model = ModelCls.from_pretrained(cfg['model_id']).to(device)
57
+ model.eval()
58
+
59
+ def model_fn(audio_path):
60
+ audio = load_audio(audio_path, target_sr=16000)
61
+ inputs = feature_extractor(audio, sampling_rate=16000, return_tensors="pt")
62
+ inputs = {k: v.to(device) for k, v in inputs.items()}
63
+ with torch.no_grad():
64
+ outputs = model(**inputs, output_hidden_states=True)
65
+ # outputs.hidden_states: tuple of (n_layers+1) tensors, each (1, T, D)
66
+ # Index 0 is the CNN feature projection output; indices 1..n are transformer layers
67
+ all_layers = torch.stack(outputs.hidden_states, dim=0) # (L+1, 1, T, D)
68
+ # Mean pool over time for each layer
69
+ pooled = all_layers.mean(dim=2).squeeze(1) # (L+1, D)
70
+ return pooled.cpu().numpy()
71
+
72
+ return model_fn
73
+
74
+
75
+ def build_whisper_model_fn(device, size='base'):
76
+ import whisper
77
+ print(f"Loading Whisper {size} encoder on {device}...")
78
+ model = whisper.load_model(size, device=device)
79
+
80
+ def model_fn(audio_path):
81
+ audio = whisper.load_audio(str(audio_path))
82
+ audio = whisper.pad_or_trim(audio)
83
+ mel = whisper.log_mel_spectrogram(audio).to(device)
84
+ # Whisper's encoder returns only the final output by default.
85
+ # To get per-layer outputs, register a forward hook.
86
+ layer_outputs = []
87
+
88
+ def hook(module, input_, output):
89
+ # output is typically a tensor (B, T, D) or tuple
90
+ out = output[0] if isinstance(output, tuple) else output
91
+ layer_outputs.append(out.mean(dim=1).squeeze().cpu().numpy()) # (D,)
92
+
93
+ handles = []
94
+ for block in model.encoder.blocks:
95
+ handles.append(block.register_forward_hook(hook))
96
+
97
+ with torch.no_grad():
98
+ _ = model.encoder(mel.unsqueeze(0))
99
+
100
+ for h in handles:
101
+ h.remove()
102
+
103
+ # Also include final layer norm output
104
+ with torch.no_grad():
105
+ final = model.encoder(mel.unsqueeze(0)).mean(dim=1).squeeze().cpu().numpy()
106
+ layer_outputs.append(final)
107
+
108
+ return np.stack(layer_outputs, axis=0) # (L, D)
109
+
110
+ return model_fn
111
+
112
+
113
+ def main():
114
+ parser = argparse.ArgumentParser()
115
+ parser.add_argument("--model", required=True,
116
+ choices=['wav2vec2', 'hubert', 'wavlm', 'xlsr', 'whisper'])
117
+ parser.add_argument("--device", default="cpu")
118
+ parser.add_argument("--base-dir", default=None)
119
+ parser.add_argument("--output-dir", default=None)
120
+ args = parser.parse_args()
121
+
122
+ if args.model == 'whisper':
123
+ model_fn = build_whisper_model_fn(args.device)
124
+ else:
125
+ model_fn = build_hf_model_fn(args.model, args.device)
126
+
127
+ extract_all(model_fn, f"{args.model}_layers", args.base_dir, args.output_dir)
128
+
129
+
130
+ if __name__ == "__main__":
131
+ main()
code/extract_titanet.py ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Extract TitaNet embeddings using NVIDIA NeMo.
3
+
4
+ Model: nvidia/speakerverification_en_titanet_large (supervised, 192-dim)
5
+ Install: pip install nemo_toolkit[asr]
6
+ """
7
+
8
+ import argparse
9
+ import torch
10
+ import numpy as np
11
+ from extraction_utils import load_audio, extract_all
12
+
13
+
14
+ def main():
15
+ parser = argparse.ArgumentParser()
16
+ parser.add_argument("--device", default="cuda" if torch.cuda.is_available() else "cpu")
17
+ parser.add_argument("--base-dir", default=None)
18
+ parser.add_argument("--output-dir", default=None)
19
+ args = parser.parse_args()
20
+
21
+ import nemo.collections.asr as nemo_asr
22
+
23
+ print(f"Loading TitaNet on {args.device}...")
24
+ model = nemo_asr.models.EncDecSpeakerLabelModel.from_pretrained(
25
+ "nvidia/speakerverification_en_titanet_large"
26
+ )
27
+ model = model.to(args.device)
28
+ model.eval()
29
+
30
+ def model_fn(audio_path):
31
+ # NeMo's get_embedding works directly with file paths
32
+ emb = model.get_embedding(str(audio_path))
33
+ return emb.squeeze().cpu().numpy()
34
+
35
+ extract_all(model_fn, "titanet", args.base_dir, args.output_dir)
36
+
37
+
38
+ if __name__ == "__main__":
39
+ main()
code/extract_wav2vec2.py ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Extract wav2vec 2.0 embeddings using HuggingFace Transformers.
3
+
4
+ Model: facebook/wav2vec2-base (self-supervised ONLY, 768-dim)
5
+ - Pre-trained with contrastive loss on LibriSpeech 960h (Baevski et al., NeurIPS 2020)
6
+ - NOT the ASR-fine-tuned version (wav2vec2-base-960h has CTC fine-tuning)
7
+ Frame-level output is mean-pooled to get utterance-level embeddings.
8
+ Install: pip install transformers torchaudio
9
+ """
10
+
11
+ import argparse
12
+ import torch
13
+ import numpy as np
14
+ from extraction_utils import load_audio, extract_all
15
+
16
+
17
+ def main():
18
+ parser = argparse.ArgumentParser()
19
+ parser.add_argument("--device", default="cuda" if torch.cuda.is_available() else "cpu")
20
+ parser.add_argument("--base-dir", default=None)
21
+ parser.add_argument("--output-dir", default=None)
22
+ args = parser.parse_args()
23
+
24
+ from transformers import Wav2Vec2Model, Wav2Vec2FeatureExtractor
25
+
26
+ print(f"Loading wav2vec2-base (self-supervised, no ASR fine-tuning) on {args.device}...")
27
+ feature_extractor = Wav2Vec2FeatureExtractor.from_pretrained("facebook/wav2vec2-base")
28
+ model = Wav2Vec2Model.from_pretrained("facebook/wav2vec2-base").to(args.device)
29
+ model.eval()
30
+
31
+ def model_fn(audio_path):
32
+ audio = load_audio(audio_path, target_sr=16000)
33
+ inputs = feature_extractor(audio, sampling_rate=16000, return_tensors="pt")
34
+ inputs = {k: v.to(args.device) for k, v in inputs.items()}
35
+ with torch.no_grad():
36
+ outputs = model(**inputs)
37
+ hidden = outputs.last_hidden_state # (1, T, 768)
38
+ embedding = hidden.mean(dim=1).squeeze().cpu().numpy() # (768,)
39
+ return embedding
40
+
41
+ extract_all(model_fn, "wav2vec2", args.base_dir, args.output_dir)
42
+
43
+
44
+ if __name__ == "__main__":
45
+ main()
code/extract_wavlm.py ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Extract WavLM embeddings using HuggingFace Transformers.
3
+
4
+ Model: microsoft/wavlm-base-plus (self-supervised, 768-dim)
5
+ Frame-level output is mean-pooled to get utterance-level embeddings.
6
+ Install: pip install transformers
7
+ """
8
+
9
+ import argparse
10
+ import torch
11
+ import numpy as np
12
+ from extraction_utils import load_audio, extract_all
13
+
14
+
15
+ def main():
16
+ parser = argparse.ArgumentParser()
17
+ parser.add_argument("--device", default="cuda" if torch.cuda.is_available() else "cpu")
18
+ parser.add_argument("--base-dir", default=None)
19
+ parser.add_argument("--output-dir", default=None)
20
+ args = parser.parse_args()
21
+
22
+ from transformers import WavLMModel, Wav2Vec2FeatureExtractor
23
+
24
+ print(f"Loading WavLM-base-plus on {args.device}...")
25
+ feature_extractor = Wav2Vec2FeatureExtractor.from_pretrained("microsoft/wavlm-base-plus")
26
+ model = WavLMModel.from_pretrained("microsoft/wavlm-base-plus").to(args.device)
27
+ model.eval()
28
+
29
+ def model_fn(audio_path):
30
+ audio = load_audio(audio_path, target_sr=16000)
31
+ inputs = feature_extractor(audio, sampling_rate=16000, return_tensors="pt")
32
+ inputs = {k: v.to(args.device) for k, v in inputs.items()}
33
+ with torch.no_grad():
34
+ outputs = model(**inputs)
35
+ hidden = outputs.last_hidden_state # (1, T, 768)
36
+ embedding = hidden.mean(dim=1).squeeze().cpu().numpy()
37
+ return embedding
38
+
39
+ extract_all(model_fn, "wavlm", args.base_dir, args.output_dir)
40
+
41
+
42
+ if __name__ == "__main__":
43
+ main()
code/extract_whisper.py ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Extract Whisper encoder embeddings.
3
+
4
+ Model: openai/whisper-base (encoder only, 512-dim after mean pooling)
5
+ Frame-level encoder output is mean-pooled to get utterance-level embeddings.
6
+ Install: pip install openai-whisper
7
+ """
8
+
9
+ import argparse
10
+ import torch
11
+ import numpy as np
12
+ from extraction_utils import extract_all
13
+
14
+
15
+ def main():
16
+ parser = argparse.ArgumentParser()
17
+ parser.add_argument("--device", default="cuda" if torch.cuda.is_available() else "cpu")
18
+ parser.add_argument("--model-size", default="base", choices=["tiny", "base", "small", "medium"])
19
+ parser.add_argument("--base-dir", default=None)
20
+ parser.add_argument("--output-dir", default=None)
21
+ args = parser.parse_args()
22
+
23
+ import whisper
24
+
25
+ print(f"Loading Whisper {args.model_size} on {args.device}...")
26
+ model = whisper.load_model(args.model_size, device=args.device)
27
+
28
+ def model_fn(audio_path):
29
+ audio = whisper.load_audio(str(audio_path))
30
+ audio = whisper.pad_or_trim(audio)
31
+ mel = whisper.log_mel_spectrogram(audio).to(args.device)
32
+ with torch.no_grad():
33
+ enc_output = model.encoder(mel.unsqueeze(0)) # (1, T, D)
34
+ embedding = enc_output.mean(dim=1).squeeze().cpu().numpy()
35
+ return embedding
36
+
37
+ extract_all(model_fn, "whisper", args.base_dir, args.output_dir)
38
+
39
+
40
+ if __name__ == "__main__":
41
+ main()
code/extract_xlsr.py ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Extract XLS-R (wav2vec2 multilingual) embeddings.
3
+
4
+ Model: facebook/wav2vec2-xls-r-300m (self-supervised multilingual, 1024-dim)
5
+ Frame-level output is mean-pooled to get utterance-level embeddings.
6
+ Install: pip install transformers
7
+ """
8
+
9
+ import argparse
10
+ import torch
11
+ import numpy as np
12
+ from extraction_utils import load_audio, extract_all
13
+
14
+
15
+ def main():
16
+ parser = argparse.ArgumentParser()
17
+ parser.add_argument("--device", default="cuda" if torch.cuda.is_available() else "cpu")
18
+ parser.add_argument("--base-dir", default=None)
19
+ parser.add_argument("--output-dir", default=None)
20
+ args = parser.parse_args()
21
+
22
+ from transformers import Wav2Vec2Model, Wav2Vec2FeatureExtractor
23
+
24
+ print(f"Loading XLS-R 300M on {args.device}...")
25
+ feature_extractor = Wav2Vec2FeatureExtractor.from_pretrained("facebook/wav2vec2-xls-r-300m")
26
+ model = Wav2Vec2Model.from_pretrained("facebook/wav2vec2-xls-r-300m").to(args.device)
27
+ model.eval()
28
+
29
+ def model_fn(audio_path):
30
+ audio = load_audio(audio_path, target_sr=16000)
31
+ inputs = feature_extractor(audio, sampling_rate=16000, return_tensors="pt")
32
+ inputs = {k: v.to(args.device) for k, v in inputs.items()}
33
+ with torch.no_grad():
34
+ outputs = model(**inputs)
35
+ hidden = outputs.last_hidden_state # (1, T, 1024)
36
+ embedding = hidden.mean(dim=1).squeeze().cpu().numpy()
37
+ return embedding
38
+
39
+ extract_all(model_fn, "xlsr", args.base_dir, args.output_dir)
40
+
41
+
42
+ if __name__ == "__main__":
43
+ main()
code/extract_xvector.py ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Extract x-vector embeddings using SpeechBrain.
3
+
4
+ Model: speechbrain/spkrec-xvect-voxceleb (supervised, softmax, 512-dim)
5
+ - The classic TDNN x-vector architecture (Snyder et al., ICASSP 2018)
6
+ - Trained on VoxCeleb1+2 with softmax loss
7
+ - Statistics pooling (mean + std) for utterance-level embeddings
8
+ Install: pip install speechbrain
9
+ """
10
+
11
+ import argparse
12
+ import torch
13
+ import numpy as np
14
+ from extraction_utils import load_audio, extract_all
15
+
16
+
17
+ def main():
18
+ parser = argparse.ArgumentParser()
19
+ parser.add_argument("--device", default="cuda" if torch.cuda.is_available() else "cpu")
20
+ parser.add_argument("--base-dir", default=None)
21
+ parser.add_argument("--output-dir", default=None)
22
+ args = parser.parse_args()
23
+
24
+ from speechbrain.inference.speaker import EncoderClassifier
25
+
26
+ print(f"Loading x-vector on {args.device}...")
27
+ classifier = EncoderClassifier.from_hparams(
28
+ source="speechbrain/spkrec-xvect-voxceleb",
29
+ run_opts={"device": args.device},
30
+ )
31
+
32
+ def model_fn(audio_path):
33
+ audio = load_audio(audio_path, target_sr=16000)
34
+ signal = torch.tensor(audio).unsqueeze(0).to(args.device)
35
+ embedding = classifier.encode_batch(signal)
36
+ return embedding.squeeze().cpu().numpy()
37
+
38
+ extract_all(model_fn, "xvector", args.base_dir, args.output_dir)
39
+
40
+
41
+ if __name__ == "__main__":
42
+ main()
code/extraction_utils.py ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Shared utilities for embedding extraction across all models.
3
+
4
+ Provides common audio loading, file collection, and save logic so that
5
+ each per-model extraction script only needs to define model initialization
6
+ and a single `model_fn(audio_path) -> np.ndarray` function.
7
+ """
8
+
9
+ import sys
10
+ import numpy as np
11
+ from pathlib import Path
12
+
13
+ try:
14
+ from tqdm import tqdm
15
+ except ImportError:
16
+ def tqdm(iterable, desc=None, total=None):
17
+ if desc:
18
+ print(f"\nProcessing {desc}...")
19
+ return iterable
20
+
21
+ import os
22
+
23
+ # Resolve the release root.
24
+ # Priority: VIPBENCH_ROOT env var > parent of this script's directory.
25
+ # Layout assumed:
26
+ # <VIPBENCH_ROOT>/
27
+ # code/extraction_utils.py <- this file
28
+ # data/audio/reference/*.wav
29
+ # data/audio/comparison/*.wav
30
+ # data/embeddings/<model>.npz <- output
31
+ def _resolve_root():
32
+ env = os.environ.get("VIPBENCH_ROOT")
33
+ if env:
34
+ return Path(env).resolve()
35
+ return Path(__file__).resolve().parent.parent
36
+
37
+ DEFAULT_BASE_DIR = _resolve_root()
38
+ DEFAULT_OUTPUT_DIR = DEFAULT_BASE_DIR / "data" / "embeddings"
39
+
40
+
41
+ def load_audio(file_path, target_sr=16000):
42
+ """Load audio file as float32 mono at target_sr.
43
+
44
+ Replicates the pattern from extract_rawnet3_embeddings.py.
45
+ """
46
+ try:
47
+ import librosa
48
+ audio, sr = librosa.load(file_path, sr=target_sr, mono=True)
49
+ return audio.astype(np.float32)
50
+ except ImportError:
51
+ pass
52
+
53
+ # Fallback to soundfile
54
+ import soundfile as sf
55
+ audio, sr = sf.read(file_path)
56
+ if len(audio.shape) > 1:
57
+ audio = np.mean(audio, axis=1)
58
+ if sr != target_sr:
59
+ import scipy.signal
60
+ num_samples = int(len(audio) * target_sr / sr)
61
+ audio = scipy.signal.resample(audio, num_samples)
62
+ if audio.dtype != np.float32:
63
+ if audio.dtype == np.int16:
64
+ audio = audio.astype(np.float32) / 32768.0
65
+ elif audio.dtype == np.int32:
66
+ audio = audio.astype(np.float32) / 2147483648.0
67
+ else:
68
+ audio = audio.astype(np.float32)
69
+ if np.max(np.abs(audio)) > 1.0:
70
+ audio = audio / np.max(np.abs(audio))
71
+ return audio.astype(np.float32)
72
+
73
+
74
+ def collect_audio_files(base_dir=None):
75
+ """Collect reference and stimulus audio files.
76
+
77
+ Returns
78
+ -------
79
+ ref_files : list[Path]
80
+ 100 reference clips from exp_2/*R.wav
81
+ stim_files : list[Path]
82
+ 9,800 comparison clips from output/*.wav
83
+ """
84
+ base = Path(base_dir) if base_dir else DEFAULT_BASE_DIR
85
+ ref_files = sorted((base / "data" / "audio" / "reference").glob("*R.wav"))
86
+ stim_files = sorted((base / "data" / "audio" / "comparison").glob("*.wav"))
87
+ return ref_files, stim_files
88
+
89
+
90
+ def save_embeddings(embeddings_dict, model_name, output_dir=None):
91
+ """Save embeddings as compressed .npz with same format as rawnet3_embeddings.npz."""
92
+ out = Path(output_dir) if output_dir else DEFAULT_OUTPUT_DIR
93
+ out.mkdir(parents=True, exist_ok=True)
94
+ path = out / f"{model_name}.npz"
95
+ np.savez_compressed(path, **embeddings_dict)
96
+ print(f"Saved {len(embeddings_dict)} embeddings to {path}")
97
+ return path
98
+
99
+
100
+ def extract_all(model_fn, model_name, base_dir=None, output_dir=None):
101
+ """Run extraction for all audio files using the provided model function.
102
+
103
+ Parameters
104
+ ----------
105
+ model_fn : callable
106
+ Takes a file path (str or Path) and returns a 1-D numpy array (the embedding).
107
+ model_name : str
108
+ Name used for the output file ({model_name}_embeddings.npz).
109
+ base_dir : str or Path, optional
110
+ Project root. Defaults to DEFAULT_BASE_DIR.
111
+ output_dir : str or Path, optional
112
+ Where to save the .npz. Defaults to DEFAULT_OUTPUT_DIR.
113
+ """
114
+ ref_files, stim_files = collect_audio_files(base_dir)
115
+ total = len(ref_files) + len(stim_files)
116
+ print(f"\n{'=' * 60}")
117
+ print(f"{model_name} Embedding Extraction")
118
+ print(f"{'=' * 60}")
119
+ print(f"Reference files: {len(ref_files)}")
120
+ print(f"Stimulus files: {len(stim_files)}")
121
+ print(f"Total: {total}")
122
+
123
+ embeddings_dict = {}
124
+ failed = []
125
+
126
+ print(f"\nProcessing reference files...")
127
+ for path in tqdm(ref_files, desc="references"):
128
+ key = path.stem
129
+ try:
130
+ emb = model_fn(path)
131
+ if emb is not None:
132
+ embeddings_dict[key] = emb
133
+ else:
134
+ failed.append(str(path))
135
+ except Exception as e:
136
+ print(f"\n Error on {path.name}: {e}")
137
+ failed.append(str(path))
138
+
139
+ print(f"\nProcessing stimulus files...")
140
+ for path in tqdm(stim_files, desc="stimuli"):
141
+ key = path.stem
142
+ try:
143
+ emb = model_fn(path)
144
+ if emb is not None:
145
+ embeddings_dict[key] = emb
146
+ else:
147
+ failed.append(str(path))
148
+ except Exception as e:
149
+ print(f"\n Error on {path.name}: {e}")
150
+ failed.append(str(path))
151
+
152
+ # Summary
153
+ print(f"\n{'=' * 60}")
154
+ print(f"Summary")
155
+ print(f"{'=' * 60}")
156
+ print(f"Extracted: {len(embeddings_dict)} / {total}")
157
+ print(f"Failed: {len(failed)}")
158
+ if embeddings_dict:
159
+ sample = next(iter(embeddings_dict.values()))
160
+ print(f"Dimension: {sample.shape}")
161
+ if failed:
162
+ print(f"\nFailed files (first 10):")
163
+ for f in failed[:10]:
164
+ print(f" {f}")
165
+
166
+ save_embeddings(embeddings_dict, model_name, output_dir)
167
+ return embeddings_dict
code/reproduce.sh ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ # VIPBench end-to-end reproduction.
3
+ #
4
+ # Default: skip extraction (use the embeddings shipped in data/embeddings/) and
5
+ # execute the analysis notebook end-to-end. ~10 minutes on a single laptop.
6
+ #
7
+ # To re-extract embeddings from raw audio (~24 CPU-hours plus ~1 GPU-hour for
8
+ # Whisper), pass `--extract` as the first argument.
9
+ #
10
+ # Usage:
11
+ # bash reproduce.sh # analysis only, uses shipped embeddings
12
+ # bash reproduce.sh --extract # re-extract everything from audio first
13
+ # VIPBENCH_ROOT=/path/to/release bash reproduce.sh # explicit root override
14
+ set -euo pipefail
15
+
16
+ cd "$(dirname "$0")"
17
+ export VIPBENCH_ROOT="${VIPBENCH_ROOT:-$(pwd)/..}"
18
+ echo "VIPBENCH_ROOT=${VIPBENCH_ROOT}"
19
+
20
+ if [[ "${1:-}" == "--extract" ]]; then
21
+ echo "[1/2] Re-extracting embeddings (this will take many hours)..."
22
+ bash run_all_extractions.sh
23
+ else
24
+ echo "[1/2] Skipping extraction. Using embeddings in data/embeddings/."
25
+ echo " Pass --extract to re-extract from audio."
26
+ fi
27
+
28
+ echo "[2/2] Executing analysis notebook..."
29
+ jupyter nbconvert --to notebook --execute benchmark_analysis.ipynb \
30
+ --output benchmark_analysis_executed.ipynb \
31
+ --ExecutePreprocessor.timeout=1800
32
+
33
+ echo "Done. See code/benchmark_analysis_executed.ipynb for the rendered output."
code/run_all_extractions.sh ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ # Run all embedding extraction scripts sequentially.
3
+ # Each script saves <model>.npz to <VIPBENCH_ROOT>/data/embeddings/.
4
+ # Scripts that fail (e.g., missing packages) are skipped gracefully.
5
+
6
+ set -o pipefail
7
+ cd "$(dirname "$0")"
8
+ export VIPBENCH_ROOT="${VIPBENCH_ROOT:-$(pwd)/..}"
9
+ echo "VIPBENCH_ROOT=${VIPBENCH_ROOT}"
10
+ mkdir -p "${VIPBENCH_ROOT}/data/embeddings"
11
+
12
+ echo "============================================================"
13
+ echo "Embedding Extraction Pipeline"
14
+ echo "============================================================"
15
+ echo ""
16
+
17
+ # Run each extractor, ordered from lightest to heaviest install
18
+ SCRIPTS=(
19
+ extract_rawnet3_embeddings.py
20
+ extract_whisper.py
21
+ extract_resemblyzer.py
22
+ extract_ecapa_tdnn.py
23
+ extract_xvector.py
24
+ extract_wav2vec2.py
25
+ extract_hubert.py
26
+ extract_wavlm.py
27
+ extract_xlsr.py
28
+ extract_titanet.py
29
+ )
30
+
31
+ SUCCEEDED=0
32
+ FAILED=0
33
+
34
+ for script in "${SCRIPTS[@]}"; do
35
+ echo "============================================================"
36
+ echo "Running: $script"
37
+ echo "============================================================"
38
+ if python3 "$script" 2>&1; then
39
+ echo " -> SUCCESS"
40
+ SUCCEEDED=$((SUCCEEDED + 1))
41
+ else
42
+ echo " -> FAILED (continuing...)"
43
+ FAILED=$((FAILED + 1))
44
+ fi
45
+ echo ""
46
+ done
47
+
48
+ echo "============================================================"
49
+ echo "Pipeline Complete"
50
+ echo " Succeeded: $SUCCEEDED"
51
+ echo " Failed: $FAILED"
52
+ echo "============================================================"
53
+ echo ""
54
+ echo "Available embeddings:"
55
+ ls -lh "${VIPBENCH_ROOT}/data/embeddings/"*.npz 2>/dev/null || echo " (none found)"
croissant.json ADDED
@@ -0,0 +1,445 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": {
3
+ "@language": "en",
4
+ "@vocab": "https://schema.org/",
5
+ "citeAs": "cr:citeAs",
6
+ "column": "cr:column",
7
+ "conformsTo": "dct:conformsTo",
8
+ "cr": "http://mlcommons.org/croissant/",
9
+ "rai": "http://mlcommons.org/croissant/RAI/",
10
+ "data": {
11
+ "@id": "cr:data",
12
+ "@type": "@json"
13
+ },
14
+ "dataType": {
15
+ "@id": "cr:dataType",
16
+ "@type": "@vocab"
17
+ },
18
+ "dct": "http://purl.org/dc/terms/",
19
+ "examples": {
20
+ "@id": "cr:examples",
21
+ "@type": "@json"
22
+ },
23
+ "extract": "cr:extract",
24
+ "field": "cr:field",
25
+ "fileProperty": "cr:fileProperty",
26
+ "fileObject": "cr:fileObject",
27
+ "fileSet": "cr:fileSet",
28
+ "format": "cr:format",
29
+ "includes": "cr:includes",
30
+ "isLiveDataset": "cr:isLiveDataset",
31
+ "jsonPath": "cr:jsonPath",
32
+ "key": "cr:key",
33
+ "md5": "cr:md5",
34
+ "parentField": "cr:parentField",
35
+ "path": "cr:path",
36
+ "recordSet": "cr:recordSet",
37
+ "references": "cr:references",
38
+ "regex": "cr:regex",
39
+ "repeated": "cr:repeated",
40
+ "replace": "cr:replace",
41
+ "sc": "https://schema.org/",
42
+ "separator": "cr:separator",
43
+ "source": "cr:source",
44
+ "subField": "cr:subField",
45
+ "transform": "cr:transform"
46
+ },
47
+ "@type": "sc:Dataset",
48
+ "name": "VIPBench",
49
+ "description": "A human-aligned benchmark for voice identity perception. 124,876 same/different identity judgments from 1,290 English-speaking listeners on 9,800 voice pairs across 100 demographically-stratified speakers, spanning real recordings, AI voice clones, and continuously morphed voices. Includes pre-extracted embeddings for 10 speaker and speech-representation models.",
50
+ "conformsTo": "http://mlcommons.org/croissant/1.0",
51
+ "citeAs": "Anonymous Authors. VIPBench: A Human-Aligned Benchmark for Voice Identity Perception in the Age of Voice Cloning. Advances in Neural Information Processing Systems Datasets and Benchmarks Track, 2026. Anonymized for double-blind review.",
52
+ "license": "https://creativecommons.org/licenses/by-nc/4.0/",
53
+ "url": "https://huggingface.co/datasets/anonymous/vipbench",
54
+ "version": "1.0.0",
55
+ "datePublished": "2026-05-06",
56
+ "keywords": [
57
+ "speaker embeddings",
58
+ "voice identity perception",
59
+ "human-aligned benchmark",
60
+ "voice cloning",
61
+ "perceptual evaluation",
62
+ "speaker verification",
63
+ "speech representations"
64
+ ],
65
+ "creator": {
66
+ "@type": "Organization",
67
+ "name": "Anonymous (NeurIPS 2026 double-blind review)"
68
+ },
69
+ "isLiveDataset": false,
70
+ "distribution": [
71
+ {
72
+ "@type": "cr:FileObject",
73
+ "@id": "speakers-csv",
74
+ "name": "speakers.csv",
75
+ "description": "Per-speaker metadata for the 100 celebrity speakers.",
76
+ "contentUrl": "data/speakers.csv",
77
+ "encodingFormat": "text/csv",
78
+ "sha256": "TO_BE_COMPUTED_BY_PUBLISHER"
79
+ },
80
+ {
81
+ "@type": "cr:FileObject",
82
+ "@id": "stimuli-csv",
83
+ "name": "stimuli.csv",
84
+ "description": "Per-pair aggregates for the 9,800 voice pairs.",
85
+ "contentUrl": "data/stimuli.csv",
86
+ "encodingFormat": "text/csv",
87
+ "sha256": "TO_BE_COMPUTED_BY_PUBLISHER"
88
+ },
89
+ {
90
+ "@type": "cr:FileObject",
91
+ "@id": "responses-csv",
92
+ "name": "participant_responses.csv",
93
+ "description": "Per-judgment records (124,876 rows).",
94
+ "contentUrl": "data/participant_responses.csv",
95
+ "encodingFormat": "text/csv",
96
+ "sha256": "TO_BE_COMPUTED_BY_PUBLISHER"
97
+ },
98
+ {
99
+ "@type": "cr:FileObject",
100
+ "@id": "stimuli-interpol-csv",
101
+ "name": "stimuli_interpol.csv",
102
+ "description": "Type 6 morph trajectory metadata (8,100 rows).",
103
+ "contentUrl": "data/stimuli_interpol.csv",
104
+ "encodingFormat": "text/csv",
105
+ "sha256": "TO_BE_COMPUTED_BY_PUBLISHER"
106
+ },
107
+ {
108
+ "@type": "cr:FileSet",
109
+ "@id": "audio-reference",
110
+ "name": "audio/reference",
111
+ "description": "100 reference audio clips (16 kHz mono WAV), one per speaker.",
112
+ "containedIn": {
113
+ "@id": "vipbench-bundle"
114
+ },
115
+ "encodingFormat": "audio/wav",
116
+ "includes": "data/audio/reference/*.wav"
117
+ },
118
+ {
119
+ "@type": "cr:FileSet",
120
+ "@id": "audio-comparison",
121
+ "name": "audio/comparison",
122
+ "description": "9,800 comparison audio clips (16 kHz mono WAV).",
123
+ "containedIn": {
124
+ "@id": "vipbench-bundle"
125
+ },
126
+ "encodingFormat": "audio/wav",
127
+ "includes": "data/audio/comparison/*.wav"
128
+ },
129
+ {
130
+ "@type": "cr:FileSet",
131
+ "@id": "embeddings-main",
132
+ "name": "embeddings",
133
+ "description": "Pre-extracted utterance-level embeddings for 10 speaker and speech-representation models. Each .npz contains 9,900 keys (audio basenames) mapped to 1-D embedding vectors.",
134
+ "containedIn": {
135
+ "@id": "vipbench-bundle"
136
+ },
137
+ "encodingFormat": "application/x-npz",
138
+ "includes": "data/embeddings/*.npz"
139
+ },
140
+ {
141
+ "@type": "cr:FileSet",
142
+ "@id": "embeddings-layers",
143
+ "name": "embeddings/layers",
144
+ "description": "Per-transformer-layer mean-pooled embeddings for 5 SSL models (wav2vec 2.0, HuBERT, WavLM, XLS-R, Whisper). Each .npz contains 9,900 keys mapped to 2-D arrays of shape (num_layers, embedding_dim).",
145
+ "containedIn": {
146
+ "@id": "vipbench-bundle"
147
+ },
148
+ "encodingFormat": "application/x-npz",
149
+ "includes": "data/embeddings/layers/*.npz"
150
+ }
151
+ ],
152
+ "recordSet": [
153
+ {
154
+ "@type": "cr:RecordSet",
155
+ "@id": "speakers",
156
+ "name": "speakers",
157
+ "description": "100 celebrity speakers stratified across 5 sociophonetic groups x 2 genders x 2 age brackets.",
158
+ "field": [
159
+ {
160
+ "@type": "cr:Field",
161
+ "@id": "speakers/id",
162
+ "name": "id",
163
+ "description": "Speaker identifier (e.g., F01, M07).",
164
+ "dataType": "sc:Text",
165
+ "source": {
166
+ "fileObject": {"@id": "speakers-csv"},
167
+ "extract": {"column": "id"}
168
+ }
169
+ },
170
+ {
171
+ "@type": "cr:Field",
172
+ "@id": "speakers/name",
173
+ "name": "name",
174
+ "description": "Speaker name (public figure).",
175
+ "dataType": "sc:Text",
176
+ "source": {
177
+ "fileObject": {"@id": "speakers-csv"},
178
+ "extract": {"column": "name"}
179
+ }
180
+ },
181
+ {
182
+ "@type": "cr:Field",
183
+ "@id": "speakers/group",
184
+ "name": "group",
185
+ "description": "Sociophonetic group (1=Italian-American, 2=African-American, 3=Asian-American, 4=Latinx, 5=mainstream Standard American English).",
186
+ "dataType": "sc:Integer",
187
+ "source": {
188
+ "fileObject": {"@id": "speakers-csv"},
189
+ "extract": {"column": "group"}
190
+ }
191
+ },
192
+ {
193
+ "@type": "cr:Field",
194
+ "@id": "speakers/gender",
195
+ "name": "gender",
196
+ "description": "Speaker gender (1=male, 2=female).",
197
+ "dataType": "sc:Integer",
198
+ "source": {
199
+ "fileObject": {"@id": "speakers-csv"},
200
+ "extract": {"column": "gender"}
201
+ }
202
+ },
203
+ {
204
+ "@type": "cr:Field",
205
+ "@id": "speakers/age",
206
+ "name": "age",
207
+ "description": "Speaker age bracket (1=younger, 2=older).",
208
+ "dataType": "sc:Integer",
209
+ "source": {
210
+ "fileObject": {"@id": "speakers-csv"},
211
+ "extract": {"column": "age"}
212
+ }
213
+ }
214
+ ]
215
+ },
216
+ {
217
+ "@type": "cr:RecordSet",
218
+ "@id": "stimuli",
219
+ "name": "stimuli",
220
+ "description": "9,800 voice pairs with per-pair human-judgment aggregates and metadata.",
221
+ "field": [
222
+ {
223
+ "@type": "cr:Field",
224
+ "@id": "stimuli/id",
225
+ "name": "id",
226
+ "description": "Stimulus identifier (matches the audio basename for the comparison clip).",
227
+ "dataType": "sc:Text",
228
+ "source": {
229
+ "fileObject": {"@id": "stimuli-csv"},
230
+ "extract": {"column": "id"}
231
+ }
232
+ },
233
+ {
234
+ "@type": "cr:Field",
235
+ "@id": "stimuli/stimuli_type",
236
+ "name": "stimuli_type",
237
+ "description": "Stimulus type (1-6). See docs/stimulus_types.md.",
238
+ "dataType": "sc:Integer",
239
+ "source": {
240
+ "fileObject": {"@id": "stimuli-csv"},
241
+ "extract": {"column": "stimuli_type"}
242
+ }
243
+ },
244
+ {
245
+ "@type": "cr:Field",
246
+ "@id": "stimuli/reference",
247
+ "name": "reference",
248
+ "description": "Reference speaker ID (joins to speakers/id).",
249
+ "dataType": "sc:Text",
250
+ "source": {
251
+ "fileObject": {"@id": "stimuli-csv"},
252
+ "extract": {"column": "reference"}
253
+ },
254
+ "references": {"field": {"@id": "speakers/id"}}
255
+ },
256
+ {
257
+ "@type": "cr:Field",
258
+ "@id": "stimuli/comparison",
259
+ "name": "comparison",
260
+ "description": "Comparison speaker ID for non-Type-6 pairs.",
261
+ "dataType": "sc:Text",
262
+ "source": {
263
+ "fileObject": {"@id": "stimuli-csv"},
264
+ "extract": {"column": "comparison"}
265
+ }
266
+ },
267
+ {
268
+ "@type": "cr:Field",
269
+ "@id": "stimuli/voice_clone",
270
+ "name": "voice_clone",
271
+ "description": "Whether the comparison clip is an AI voice clone (1) or natural recording (0).",
272
+ "dataType": "sc:Integer",
273
+ "source": {
274
+ "fileObject": {"@id": "stimuli-csv"},
275
+ "extract": {"column": "voice_clone"}
276
+ }
277
+ },
278
+ {
279
+ "@type": "cr:Field",
280
+ "@id": "stimuli/correct_answer",
281
+ "name": "correct_answer",
282
+ "description": "Metadata-label same/different (1=same speaker by metadata, 0=different).",
283
+ "dataType": "sc:Integer",
284
+ "source": {
285
+ "fileObject": {"@id": "stimuli-csv"},
286
+ "extract": {"column": "correct_answer"}
287
+ }
288
+ },
289
+ {
290
+ "@type": "cr:Field",
291
+ "@id": "stimuli/scale",
292
+ "name": "scale",
293
+ "description": "For Type 6 morphs, the interpolation scale (0=reference voice, 100=other voice). 100 for non-morph pairs.",
294
+ "dataType": "sc:Integer",
295
+ "source": {
296
+ "fileObject": {"@id": "stimuli-csv"},
297
+ "extract": {"column": "scale"}
298
+ }
299
+ },
300
+ {
301
+ "@type": "cr:Field",
302
+ "@id": "stimuli/num_response",
303
+ "name": "num_response",
304
+ "description": "Number of listener judgments collected for this pair.",
305
+ "dataType": "sc:Integer",
306
+ "source": {
307
+ "fileObject": {"@id": "stimuli-csv"},
308
+ "extract": {"column": "num_response"}
309
+ }
310
+ },
311
+ {
312
+ "@type": "cr:Field",
313
+ "@id": "stimuli/same_vote",
314
+ "name": "same_vote",
315
+ "description": "Number of listeners who judged the pair as the same speaker.",
316
+ "dataType": "sc:Integer",
317
+ "source": {
318
+ "fileObject": {"@id": "stimuli-csv"},
319
+ "extract": {"column": "same_vote"}
320
+ }
321
+ },
322
+ {
323
+ "@type": "cr:Field",
324
+ "@id": "stimuli/diff_vote",
325
+ "name": "diff_vote",
326
+ "description": "Number of listeners who judged the pair as different speakers.",
327
+ "dataType": "sc:Integer",
328
+ "source": {
329
+ "fileObject": {"@id": "stimuli-csv"},
330
+ "extract": {"column": "diff_vote"}
331
+ }
332
+ }
333
+ ]
334
+ },
335
+ {
336
+ "@type": "cr:RecordSet",
337
+ "@id": "responses",
338
+ "name": "participant_responses",
339
+ "description": "124,876 individual listener judgments.",
340
+ "field": [
341
+ {
342
+ "@type": "cr:Field",
343
+ "@id": "responses/user_id",
344
+ "name": "user_id",
345
+ "description": "Pseudonymized listener identifier.",
346
+ "dataType": "sc:Integer",
347
+ "source": {
348
+ "fileObject": {"@id": "responses-csv"},
349
+ "extract": {"column": "user_id"}
350
+ }
351
+ },
352
+ {
353
+ "@type": "cr:Field",
354
+ "@id": "responses/stimuli_id",
355
+ "name": "stimuli_id",
356
+ "description": "Stimulus identifier (joins to stimuli/id).",
357
+ "dataType": "sc:Text",
358
+ "source": {
359
+ "fileObject": {"@id": "responses-csv"},
360
+ "extract": {"column": "stimuli_id"}
361
+ },
362
+ "references": {"field": {"@id": "stimuli/id"}}
363
+ },
364
+ {
365
+ "@type": "cr:Field",
366
+ "@id": "responses/stimuli_type",
367
+ "name": "stimuli_type",
368
+ "description": "Stimulus type (1-6).",
369
+ "dataType": "sc:Integer",
370
+ "source": {
371
+ "fileObject": {"@id": "responses-csv"},
372
+ "extract": {"column": "stimuli_type"}
373
+ }
374
+ },
375
+ {
376
+ "@type": "cr:Field",
377
+ "@id": "responses/answer",
378
+ "name": "answer",
379
+ "description": "Listener's binary same/different judgment (1=same, 0=different).",
380
+ "dataType": "sc:Integer",
381
+ "source": {
382
+ "fileObject": {"@id": "responses-csv"},
383
+ "extract": {"column": "answer"}
384
+ }
385
+ },
386
+ {
387
+ "@type": "cr:Field",
388
+ "@id": "responses/correct",
389
+ "name": "correct",
390
+ "description": "Whether the listener's answer matches the metadata label.",
391
+ "dataType": "sc:Integer",
392
+ "source": {
393
+ "fileObject": {"@id": "responses-csv"},
394
+ "extract": {"column": "correct"}
395
+ }
396
+ },
397
+ {
398
+ "@type": "cr:Field",
399
+ "@id": "responses/know_speaker",
400
+ "name": "know_speaker",
401
+ "description": "Listener-recognition flag (1=listener identified the reference speaker).",
402
+ "dataType": "sc:Integer",
403
+ "source": {
404
+ "fileObject": {"@id": "responses-csv"},
405
+ "extract": {"column": "know_speaker"}
406
+ }
407
+ }
408
+ ]
409
+ }
410
+ ],
411
+ "rai:dataCollection": "Listener judgments were collected via the Centaur AI online crowdsourcing platform under an Institutional Review Board (IRB) approved research protocol. Each pair received at least 8 judgments from English-speaking adult participants. Source audio was selected from publicly available recordings of 100 US celebrity speakers; AI voice clones were generated from these source clips using a state-of-the-art text-to-speech system; voice morphs were generated by interpolating a voice-conversion latent between two source speakers.",
412
+ "rai:dataCollectionType": [
413
+ "Crowdsourcing",
414
+ "Synthetic data generation"
415
+ ],
416
+ "rai:dataCollectionMissingValues": "The know_speaker field is missing for some early-trial responses (less than 1% of records). Listeners with fewer than the qualification threshold of attention-check passes are flagged but their responses are still released.",
417
+ "rai:dataCollectionTimeFrame": {
418
+ "@type": "DateTime",
419
+ "@value": "2025-01-01/2026-04-30"
420
+ },
421
+ "rai:dataAnnotationProtocol": "Each trial presents a single audio clip in which a reference recording is followed by 1 second of silence, a short beep, and a comparison recording. The listener answers (a) whether the two clips came from the same speaker (binary same/different) and (b) optionally identifies which of four within-group celebrities (or 'I don't know') they recognize in the reference clip. Stimulus presentation order is randomized within participant. Participants provide informed consent prior to participating; no deception is involved.",
422
+ "rai:dataAnnotationPlatform": "Centaur AI crowdsourcing platform (https://centaur.ai)",
423
+ "rai:dataAnnotationAnalysis": "Per-pair P(same) is computed as the fraction of listeners who judged the pair as the same speaker. Inter-rater agreement is reported as Spearman-Brown corrected split-half reliability (rho_SB = 0.705 over 100 random splits).",
424
+ "rai:annotationsPerItem": "median 10, range 8 to 92",
425
+ "rai:dataPreprocessingProtocol": "Audio was resampled to 16 kHz mono. Listener responses were validated against attention-check probes embedded in the study. The reorganized_stimuli.csv aggregates count same/different votes per pair.",
426
+ "rai:dataReleaseMaintenancePlan": "The dataset is versioned (v1.0 at NeurIPS 2026 submission). Updates are tracked in CHANGELOG.md and tagged on the public repository. The authors will respond to errata via the public repository issue tracker (link to be added at camera-ready).",
427
+ "rai:dataLifecycleStage": "Released",
428
+ "rai:personalSensitiveInformation": "The dataset names public-figure speakers because the celebrity-stratified design is integral to the benchmark and source recordings are publicly available. Listener identifiers are pseudonymized integers tied to no external account. Listener demographic fields are limited to age band, gender, and a binary first-language flag.",
429
+ "rai:dataSocialImpact": "Voice-cloning systems that better align with human perception could inform adversarial use such as more convincing fraudulent calls. The same alignment knowledge also strengthens defenses: perception-aligned identity models can flag voice clones that metadata-based verification would accept. The benchmark measures model-human alignment at the evaluation level and does not release clone-generation recipes or adversarial training targets.",
430
+ "rai:dataLimitations": [
431
+ "English-speaking listener pool, US-dialect speakers. Cross-language perception is not measured.",
432
+ "100 speakers limits statistical power for some subgroup contrasts (20 speakers per sociophonetic group).",
433
+ "Studio-quality audio. In-the-wild conditions (noise, codec compression, telephony) are not represented.",
434
+ "The operational target is a population consensus, appropriate for ambiguous stimuli where any absolute identity label would itself be probabilistic."
435
+ ],
436
+ "rai:dataUseCases": [
437
+ "Benchmarking speaker embedding models against human voice-identity perception (Pearson r, R^2 against P(same)).",
438
+ "Human-aligned binary speaker verification (AUC, Platt-calibrated ECE against the listener majority vote).",
439
+ "Representational similarity analysis (RSA) between human and model representational dissimilarity matrices.",
440
+ "Real-to-synthetic distribution-shift evaluation (does a predictor fit on real-speech pairs still work on voice clones and morphs?).",
441
+ "Listener-conditioned identity modeling (using per-listener responses).",
442
+ "Calibration and uncertainty estimation in speaker verification."
443
+ ],
444
+ "rai:dataBiases": "Speakers are 100 US celebrities; the dataset over-represents US-dialect, professionally-recorded speech. Listeners are English-speaking adult crowdworkers. Generalization to non-English speakers, listeners, or in-the-wild audio conditions is not measured. The 5 sociophonetic groups carry 20 speakers each, limiting subgroup statistical power."
445
+ }
data/participant_responses.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/speakers.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id,name,group,gender,age
2
+ M01,Vinny Guadagnino,1,1,1
3
+ M02,Michael Gandolfini,1,1,1
4
+ M03,Robert Iler,1,1,1
5
+ M04,Sal Valentinetti,1,1,1
6
+ M05,John Rondi Jr.,1,1,1
7
+ M06,Oliver Anthony,2,1,1
8
+ M07,Morgan Wallen,2,1,1
9
+ M08,Luke Combs,2,1,1
10
+ M09,Riley Green,2,1,1
11
+ M10,Parker Mccollum,2,1,1
12
+ M11,Kendrick Lamar,3,1,1
13
+ M12,Tyler the Creator,3,1,1
14
+ M13,J Cole,3,1,1
15
+ M14,Michael B. Jordan,3,1,1
16
+ M15,Lil Durk,3,1,1
17
+ M16,Marcello Hernández,4,1,1
18
+ M17,Pitbull,4,1,1
19
+ M18,Maluma,4,1,1
20
+ M19,Eric Hosmer,4,1,1
21
+ M20,Robby Ramos,4,1,1
22
+ M21,Jimmy O. Yang,5,1,1
23
+ M22,Brandon Soo Hoo,5,1,1
24
+ M23,Lawrence Kao,5,1,1
25
+ M24,Ludi Lin,5,1,1
26
+ M25,Andrew Fung,5,1,1
27
+ M26,Michael Imperioli,1,1,2
28
+ M27,Robert De Niro,1,1,2
29
+ M28,Al Pacino,1,1,2
30
+ M29,Harvey Keitel,1,1,2
31
+ M30,Danny DeVito,1,1,2
32
+ M31,Matthew McConaughey,2,1,2
33
+ M32,Billy Bob Thornton,2,1,2
34
+ M33,Jeff Foxworthy,2,1,2
35
+ M34,Trace Adkins,2,1,2
36
+ M35,Ricky Skaggs,2,1,2
37
+ M36,Snoop Dogg,3,1,2
38
+ M37,Ice Cube,3,1,2
39
+ M38,Dr. Dre,3,1,2
40
+ M39,Dave Chappelle,3,1,2
41
+ M40,Jamie Foxx,3,1,2
42
+ M41,Andy García,4,1,2
43
+ M42,Steven Bauer,4,1,2
44
+ M43,Ricky Martin,4,1,2
45
+ M44,Marc Anthony,4,1,2
46
+ M45,Eugenio Derbez,4,1,2
47
+ M46,Tzi Ma,5,1,2
48
+ M47,Hiroyuki Sanada,5,1,2
49
+ M48,George Takei,5,1,2
50
+ M49,BD Wong,5,1,2
51
+ M50,James Hong,5,1,2
52
+ F01,Cardi B,1,2,1
53
+ F02,Lady Gaga,1,2,1
54
+ F03,Julia Fox,1,2,1
55
+ F04,Ice Spice,1,2,1
56
+ F05,Angelina Pivarnick,1,2,1
57
+ F06,Lainey Wilson,2,2,1
58
+ F07,RaeLynn,2,2,1
59
+ F08,Kacey Musgraves,2,2,1
60
+ F09,Miley Cyrus,2,2,1
61
+ F10,Kelsea Ballerini,2,2,1
62
+ F11,Megan Thee Stallion,3,2,1
63
+ F12,JT,3,2,1
64
+ F13,Latto,3,2,1
65
+ F14,Keke Palmer,3,2,1
66
+ F15,Lizzo,3,2,1
67
+ F16,Ana de Armas,4,2,1
68
+ F17,Camila Cabello,4,2,1
69
+ F18,Eiza González,4,2,1
70
+ F19,Anitta,4,2,1
71
+ F20,Lele Pons,4,2,1
72
+ F21,Chloe Bennet,5,2,1
73
+ F22,Stephanie Hsu,5,2,1
74
+ F23,Kelly Marie Tran,5,2,1
75
+ F24,Brenda Song,5,2,1
76
+ F25,Ashley Park,5,2,1
77
+ F26,Lorraine Bracco,1,2,2
78
+ F27,Debi Mazar,1,2,2
79
+ F28,Susie Essman,1,2,2
80
+ F29,Edie Falco,1,2,2
81
+ F30,Drea de Matteo,1,2,2
82
+ F31,Dolly Parton,2,2,2
83
+ F32,Reba McEntire,2,2,2
84
+ F33,Sissy Spacek,2,2,2
85
+ F34,Naomi Judd,2,2,2
86
+ F35,Tanya Tucker,2,2,2
87
+ F36,Mary J. Blige,3,2,2
88
+ F37,Queen Latifah,3,2,2
89
+ F38,Missy Elliott,3,2,2
90
+ F39,Taraji P. Henson,3,2,2
91
+ F40,Mo’Nique,3,2,2
92
+ F41,Salma Hayek,4,2,2
93
+ F42,Gloria Estefan,4,2,2
94
+ F43,Jennifer Lopez,4,2,2
95
+ F44,Rita Moreno,4,2,2
96
+ F45,Kate del Castillo,4,2,2
97
+ F46,Ming-Na Wen,5,2,2
98
+ F47,Lucy Liu,5,2,2
99
+ F48,Margaret Cho,5,2,2
100
+ F49,Michelle Yeoh,5,2,2
101
+ F50,Rosalind Chao,5,2,2
data/stimuli.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/stimuli_interpol.csv ADDED
The diff for this file is too large to render. See raw diff
 
docs/annotation_protocol.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Annotation protocol
2
+
3
+ This document describes how the 124,876 listener judgments in VIPBench were collected.
4
+
5
+ ## Recruitment
6
+
7
+ Listeners were recruited via the **Centaur AI** crowdsourcing platform (`https://centaur.ai`) under an Institutional Review Board (IRB) approved research protocol. The pool was restricted to English-speaking adults; 1,290 participants completed at least one trial. Compensation followed the platform's standard rate, which meets minimum-wage requirements in the country of data collection.
8
+
9
+ ## Consent
10
+
11
+ Participants reviewed and accepted the platform's standard consent text before beginning the study. The IRB-approved protocol covered (a) the use of publicly available celebrity recordings as source audio, (b) the generation of AI voice clones from those recordings, and (c) the collection of binary same/different identity judgments.
12
+
13
+ ## Stimulus presentation
14
+
15
+ Each trial presented a single audio clip in three parts:
16
+
17
+ 1. A reference recording of one celebrity speaker (~6 seconds).
18
+ 2. One second of silence followed by a short beep (separator).
19
+ 3. A comparison clip (real, AI cloned, or morphed; ~6 seconds).
20
+
21
+ Stimuli are 16 kHz mono WAV. The combined stimulus is the file in `data/audio/`'s comparison directory together with the matching reference. The pre-concatenated trial-format clips used in the human study are not redistributed; users can recreate them by concatenating reference + 1 s silence + beep + comparison.
22
+
23
+ ## Response interface
24
+
25
+ For each trial, listeners answered:
26
+
27
+ 1. **Identity judgment** (binary, required): "Are these two clips from the same speaker?" with response options "Same" or "Different".
28
+ 2. **Speaker recognition** (categorical, optional probe, recorded as `know_speaker`): which of four within-group celebrities (or "I don't know") they recognized in the reference clip.
29
+
30
+ Response (1) defines the primary annotation; response (2) is used to filter trials where the listener recognized the reference (78.4% of all judgments come from unfamiliar-listener trials).
31
+
32
+ ## Coverage
33
+
34
+ - Each pair received at least 8 judgments. Median 10, range 8 to 92.
35
+ - Real-speech pairs received more coverage on average than synthetic pairs, giving tighter consensus estimates on the real-speech reference distribution.
36
+ - Stimulus presentation order is randomized within participant.
37
+
38
+ ## Attention checks
39
+
40
+ Embedded probes flagged inattentive responses; per-listener qualification flags are computed from these probes. The full release includes all responses; downstream users can apply the qualification filter via the columns in `data/participant_responses.csv`.
41
+
42
+ ## Demographics collected
43
+
44
+ Per listener: pseudonymized integer identifier, age band, gender, and a binary first-language flag. No personally identifying information is included. Listener IDs are tied to no external account or platform user.
45
+
46
+ ## P(same) computation
47
+
48
+ For each pair, `P(same) = same_vote / num_response` where `same_vote` counts listeners who answered "Same" and `num_response` is the total number of judgments on that pair. The Spearman-Brown corrected split-half reliability of `P(same)` over the 1,290-participant pool is `rho_SB = 0.705`, which bounds any model's correlation against the observed target.
49
+
50
+ ## Reproducing the listening study
51
+
52
+ Researchers wishing to extend the study (e.g. with non-English listeners) can reuse this protocol. The trial-format audio files (reference + silence + beep + comparison) are deterministically reconstructable from `data/audio/`. Per-pair stimulus IDs in `data/stimuli.csv` allow exact replication of trial assignment.
53
+
54
+ For the IRB-approval scope and permissible extensions, contact the dataset maintainers (camera-ready will list contact information).
docs/data_dictionary.md ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Data dictionary
2
+
3
+ Column-level schemas for every CSV in `data/` and `samples/`.
4
+
5
+ ## `speakers.csv` (100 rows)
6
+
7
+ | Column | Type | Description | Valid values |
8
+ |---|---|---|---|
9
+ | `id` | text | Speaker identifier. Joins to `stimuli.reference` and to `<id>R` keys in embedding files. | F01-F50, M01-M50 |
10
+ | `name` | text | Speaker name (public figure). | celebrity name |
11
+ | `group` | int | Sociophonetic group code. | 1-5 (see below) |
12
+ | `gender` | int | Speaker gender. | 1=male, 2=female |
13
+ | `age` | int | Speaker age bracket. | 1=younger, 2=older |
14
+
15
+ ### Sociophonetic group mapping
16
+
17
+ The 5 sociophonetic groups partition the 100 speakers into 20 speakers each. The integer-to-group mapping is documented by the dataset authors. The benchmark protocol uses `group` only as a stratification variable for fairness analyses; downstream users reproducing fairness analyses can rely on the integer codes directly.
18
+
19
+ ## `stimuli.csv` (9,800 rows)
20
+
21
+ | Column | Type | Description |
22
+ |---|---|---|
23
+ | `id` | text | Stimulus identifier (matches the comparison-audio basename). Key into embedding files. |
24
+ | `stimuli_type` | int | Stimulus type, 1-6. See `stimulus_types.md`. |
25
+ | `reference` | text | Reference speaker ID. Joins to `speakers.id`. |
26
+ | `comparison` | text | Comparison speaker ID for non-Type-6 pairs (NaN for Type 6). |
27
+ | `voice_clone` | int | 1 if comparison clip is an AI voice clone, 0 otherwise. |
28
+ | `correct_answer` | int | Metadata same/different label. 1=same speaker by metadata, 0=different. |
29
+ | `scale` | int | For Type 6 morphs, interpolation level in [0, 100]. 100 for non-morph pairs. |
30
+ | `num_response` | int | Number of listener judgments on this pair. |
31
+ | `same_vote` | int | Listeners who answered "same speaker". |
32
+ | `diff_vote` | int | Listeners who answered "different speaker". |
33
+ | `correct_vote` | int | Listeners whose answer matches the metadata label. |
34
+ | `incorrect_vote` | int | Listeners whose answer disagrees with the metadata label. |
35
+ | `accuracy` | float | `correct_vote / num_response`. |
36
+ | `group` | int | Reference speaker's sociophonetic group. |
37
+ | `gender` | int | Reference speaker's gender. |
38
+ | `age` | int | Reference speaker's age bracket. |
39
+
40
+ `P(same)` is computed downstream as `same_vote / num_response`.
41
+
42
+ ## `participant_responses.csv` (124,876 rows)
43
+
44
+ | Column | Type | Description |
45
+ |---|---|---|
46
+ | `user_id` | int | Pseudonymized listener identifier. Tied to no external account. |
47
+ | `stimuli_id` | text | Stimulus identifier. Joins to `stimuli.id`. |
48
+ | `stimuli_type` | int | Stimulus type, 1-6. |
49
+ | `answer` | int | Listener's binary judgment. 1=same speaker, 0=different. |
50
+ | `correct` | int | 1 if `answer` matches `correct_answer` in `stimuli.csv`, 0 otherwise. |
51
+ | `know_speaker` | int | Listener-recognition probe. 1 if listener identified the reference speaker, 0 otherwise. May be missing for early-trial responses. |
52
+ | `age` | float | Listener age band (categorical, encoded as float). |
53
+ | `gender` | float | Listener gender. |
54
+ | `first_language` | float | Listener first-language flag. 0=English first, 1=other. |
55
+ | `num_stimuli_seen` | float | Cumulative stimulus count for this listener at the time of the response. |
56
+
57
+ ## `stimuli_interpol.csv` (8,100 rows)
58
+
59
+ Per-stimulus metadata for Type 6 morphs.
60
+
61
+ | Column | Type | Description |
62
+ |---|---|---|
63
+ | `id` | text | Stimulus identifier. Joins to `stimuli.id`. |
64
+ | `source` | text | Source speaker A (one endpoint of the morph trajectory). |
65
+ | `target` | text | Source speaker B (other endpoint). |
66
+ | `scale` | int | Interpolation level in [0, 100]. |
67
+
68
+ (Other columns may be present and are described in their headers; the four above are the schema-stable subset used by the analysis notebook.)
69
+
70
+ ## Embedding `.npz` files
71
+
72
+ Each file in `data/embeddings/` is a key-value store:
73
+
74
+ - **Keys** (`.files` attribute): audio basenames without `.wav`. 9,900 keys total: 100 references like `M01R`, `F03R` plus 9,800 comparisons like `1_F01`, `4_M12_M15B`, `6_F03_F09_50`.
75
+ - **Values**: 1-D `np.float32` arrays of shape `(embedding_dim,)`. Dim depends on the model (see `model_table.md`).
76
+
77
+ Per-layer files (`data/embeddings/layers/`) use the same keys; values have shape `(num_layers, embedding_dim)` (mean-pooled across time per layer).
78
+
79
+ ## How to pair reference and comparison
80
+
81
+ Every voice pair in VIPBench is one row of `stimuli.csv`. The pairing rule is:
82
+
83
+ | Asset | Reference clip | Comparison clip |
84
+ |---|---|---|
85
+ | CSV column | `reference` (e.g., `M01`) | `id` (e.g., `1_M01`, `4_M12_M15B`) |
86
+ | Audio file | `data/audio/reference/{reference}R.wav` | `data/audio/comparison/{id}.wav` |
87
+ | Embedding key | `{reference}R` (e.g., `M01R`) | `{id}` (e.g., `1_M01`) |
88
+
89
+ Equivalently: the reference clip's basename is the speaker ID with `R` appended; the comparison clip's basename is exactly the stimulus `id`. The 100 reference embeddings (`*R`) and 9,800 comparison embeddings (`id`) together make the 9,900 keys present in every `.npz`.
90
+
91
+ Reference example: scoring a model against `P(same)`.
92
+
93
+ ```python
94
+ import numpy as np, pandas as pd
95
+ from sklearn.metrics.pairwise import cosine_similarity
96
+
97
+ stim = pd.read_csv('data/stimuli.csv')
98
+ emb = dict(np.load('data/embeddings/ecapa_tdnn.npz'))
99
+
100
+ def cos_pair(row):
101
+ ref = emb[f'{row.reference}R'].reshape(1, -1)
102
+ cmp = emb[row.id].reshape(1, -1)
103
+ return cosine_similarity(ref, cmp)[0, 0]
104
+
105
+ stim['cos'] = stim.apply(cos_pair, axis=1)
106
+ stim['p_same'] = stim['same_vote'] / stim['num_response']
107
+ print(stim[['cos', 'p_same']].corr())
108
+ ```
109
+
110
+ The same pattern (with `librosa.load(...)` instead of dictionary lookup) loads the corresponding audio.
docs/model_table.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Baseline models
2
+
3
+ The 10 speech representations benchmarked in the accompanying paper. Each is loaded from a publicly available pretrained checkpoint; weights are downloaded by the corresponding extraction script in `code/`.
4
+
5
+ | Model | Paradigm | Training data | Dim | HF checkpoint | Extraction script |
6
+ |---|---|---|---|---|---|
7
+ | x-vector | Supervised classification | VoxCeleb 1+2 | 512 | `speechbrain/spkrec-xvect-voxceleb` | `extract_xvector.py` |
8
+ | ECAPA-TDNN | AAM-Softmax | VoxCeleb 1+2 | 192 | `speechbrain/spkrec-ecapa-voxceleb` | `extract_ecapa_tdnn.py` |
9
+ | RawNet3 | AAM-Softmax | VoxCeleb 1+2 | 192 | `espnet/voxcelebs12_rawnet3` | `extract_rawnet3_embeddings.py` |
10
+ | TitaNet (large) | AAM-Softmax | VoxCeleb + Fisher + SWB | 192 | `nvidia/speakerverification_en_titanet_large` | `extract_titanet.py` |
11
+ | resemblyzer | GE2E loss, 3-layer LSTM | LibriSpeech / VoxCeleb (mixed) | 256 | bundled with `resemblyzer` package | `extract_resemblyzer.py` |
12
+ | wav2vec 2.0 | Contrastive masked prediction | LibriSpeech 960 h | 768 | `facebook/wav2vec2-base` | `extract_wav2vec2.py` |
13
+ | HuBERT | Masked prediction | LibriSpeech 960 h | 768 | `facebook/hubert-base-ls960` | `extract_hubert.py` |
14
+ | WavLM | Masked prediction + denoising | 94K h mixed | 768 | `microsoft/wavlm-base-plus` | `extract_wavlm.py` |
15
+ | XLS-R | Contrastive multilingual | 436K h, 128 languages | 1024 | `facebook/wav2vec2-xls-r-300m` | `extract_xlsr.py` |
16
+ | Whisper (encoder, base) | Multitask weakly supervised ASR | 680K h web audio | 512 | `openai/whisper-base` | `extract_whisper.py` |
17
+
18
+ ## Output format
19
+
20
+ Each script saves `<model>.npz` to `<VIPBENCH_ROOT>/data/embeddings/`. The file is a key-value store with 9,900 keys (audio basenames without `.wav`) mapping to 1-D `np.float32` arrays of shape `(embedding_dim,)`.
21
+
22
+ For SSL models (wav2vec 2.0, HuBERT, WavLM, XLS-R, Whisper), `extract_ssl_layers.py` additionally produces a per-layer mean-pooled bundle saved to `<VIPBENCH_ROOT>/data/embeddings/layers/<model>.npz`. Values there have shape `(num_layers, embedding_dim)`.
23
+
24
+ ## Pooling
25
+
26
+ Self-supervised models (wav2vec 2.0, HuBERT, WavLM, XLS-R) and Whisper produce frame-level outputs; we use **mean pooling across time** for the utterance-level embedding. Speaker-specialized models (x-vector, ECAPA-TDNN, RawNet3, TitaNet, resemblyzer) produce a single utterance-level vector by design and are passed through unchanged.
27
+
28
+ ## Best-layer protocol
29
+
30
+ For SSL models the final layer is known to underperform on speaker tasks (SUPERB, 2021). The notebook implements a **SUPERB-style nested speaker-CV best-layer protocol**: for each held-out speaker fold, the layer that maximizes Pearson r against `P(same)` on training speakers is selected and applied to the test speakers. No pair contributes to selecting its own layer. Per-layer Pearson r curves are reported in the appendix figure.
31
+
32
+ ## Licenses
33
+
34
+ Each baseline retains its original license. As of release time:
35
+
36
+ - speechbrain checkpoints: Apache 2.0
37
+ - ESPnet checkpoints: Apache 2.0
38
+ - NVIDIA NeMo: NVIDIA Source Code License (research permitted)
39
+ - Hugging Face hosted facebook/microsoft checkpoints: respective lab licenses (typically MIT / Apache 2.0)
40
+ - OpenAI Whisper: MIT
41
+ - resemblyzer: MIT
42
+
43
+ Verify the license at the linked checkpoint page before redistribution. The CC-BY-NC 4.0 license on VIPBench's audio + judgments + derived embeddings does not extend to these third-party model weights.
docs/reproduction.md ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Reproduction
2
+
3
+ End-to-end reproduction of the figures and tables in the accompanying NeurIPS 2026 paper.
4
+
5
+ ## Environment
6
+
7
+ Tested on Linux x86_64 with Python 3.10 and 3.11. WSL2 also works.
8
+
9
+ ```bash
10
+ python3 -m venv .venv
11
+ source .venv/bin/activate
12
+ pip install -r requirements.txt
13
+ ```
14
+
15
+ GPU is optional. Whisper extraction is faster on GPU; everything else runs comfortably on CPU.
16
+
17
+ ## Quick reproduction (analysis only)
18
+
19
+ This uses the embeddings already shipped in `data/embeddings/` and runs the analysis notebook end-to-end. **~10 minutes** on a laptop.
20
+
21
+ ```bash
22
+ cd code
23
+ bash reproduce.sh
24
+ ```
25
+
26
+ The notebook is rendered to `code/benchmark_analysis_executed.ipynb`. Figures are written to `code/manuscript/figures/`.
27
+
28
+ ## Full reproduction (re-extract embeddings)
29
+
30
+ This re-extracts embeddings from the audio in `data/audio/` for all 10 models. **~24 CPU-hours plus ~1 GPU-hour for Whisper.**
31
+
32
+ ```bash
33
+ cd code
34
+ bash reproduce.sh --extract
35
+ ```
36
+
37
+ Or run individual extractors:
38
+
39
+ ```bash
40
+ cd code
41
+ python3 extract_ecapa_tdnn.py
42
+ python3 extract_whisper.py
43
+ # ...
44
+ ```
45
+
46
+ Each script writes `<model>.npz` to `data/embeddings/`.
47
+
48
+ ## Path resolution
49
+
50
+ The release directory is the implicit root. Override with `VIPBENCH_ROOT`:
51
+
52
+ ```bash
53
+ VIPBENCH_ROOT=/path/to/vipbench_release bash code/reproduce.sh
54
+ ```
55
+
56
+ The notebook auto-resolves paths via `Path.cwd().parent` when run from `code/`.
57
+
58
+ ## Caching
59
+
60
+ The notebook caches expensive computations under `code/cache/`:
61
+
62
+ - Cosine-similarity matrices per model
63
+ - Bootstrap confidence intervals
64
+ - Best-layer cosine similarities for SSL models
65
+ - Mahalanobis-metric solutions
66
+
67
+ Delete `code/cache/` to force recompute. The cache is keyed by content hash of inputs; changing the embeddings or CSVs invalidates the relevant entries automatically.
68
+
69
+ ## Outputs
70
+
71
+ After successful execution, expect:
72
+
73
+ - `code/benchmark_analysis_executed.ipynb`: rendered notebook
74
+ - `code/manuscript/figures/*.png`: ~12 figures
75
+ - `code/manuscript/tables/*.csv` (if generated by notebook): per-model summary tables
76
+
77
+ ## Verifying the reproduction
78
+
79
+ The grand summary table (notebook cell near the end) should report:
80
+
81
+ - resemblyzer: Pearson r ~0.656, R^2 ~0.430, AUC ~0.872
82
+ - ECAPA-TDNN: Pearson r ~0.646
83
+ - Whisper (final layer): Pearson r ~0.226
84
+ - Spearman-Brown noise ceiling: rho_SB = 0.705
85
+
86
+ Numbers should match the paper to 3 decimal places (small variation from random-seed effects in bootstrap CIs is expected).
87
+
88
+ ## Troubleshooting
89
+
90
+ ### NeMo / TitaNet install fails
91
+
92
+ `nemo_toolkit[asr]` is heavy (~5 GB). If you don't need TitaNet, comment out its line in `requirements.txt` and skip `extract_titanet.py`. The notebook will print `SKIPPED titanet: no .npz found` and continue.
93
+
94
+ ### Hugging Face checkpoint download fails
95
+
96
+ The extraction scripts download checkpoints on first run. Verify network access to `huggingface.co` and run `huggingface-cli login` if you've hit rate limits. Set `HF_HOME` to point to a persistent cache directory if you re-run frequently.
97
+
98
+ ### librosa / numba conflict
99
+
100
+ If `pip install librosa` complains about numba, pin `numba<0.59` and re-install.
101
+
102
+ ### "No .npz found"
103
+
104
+ The notebook logs `SKIPPED <model>: no .npz at <path>` when an embedding bundle is missing. The remaining models still produce results; the grand summary will simply omit the missing rows.
105
+
106
+ ### Out-of-memory during SSL layer extraction
107
+
108
+ `extract_ssl_layers.py` keeps all layer activations in memory per model. For machines with less than 16 GB RAM, run one model at a time and clear caches between runs.
docs/stimulus_types.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Stimulus types
2
+
3
+ VIPBench contains 9,800 voice pairs in **6 stimulus types**, designed to span the perceptual identity landscape from "obviously same" to "obviously different" with controlled ambiguous regions in between.
4
+
5
+ ## The six types
6
+
7
+ | Type | Description | Metadata label | Pair count | P(same) shape |
8
+ |---|---|---|---|---|
9
+ | 1 | Same recording (reference compared with itself, segmented differently) | Same | 100 | concentrated near 1.0 |
10
+ | 2 | Same speaker, different recording | Same | 500 | high but spread |
11
+ | 3 | Same speaker, AI voice clone | Same | 500 | spreads across full range (clones with metadata-same label) |
12
+ | 4 | Different speakers, real recordings | Different | 500 | concentrated near 0.0 |
13
+ | 5 | Different speakers, AI voice clones | Different | 100 | concentrated near 0.0 |
14
+ | 6 | Continuously morphed voices | (no clean metadata label) | 8,100 | sweeps full range across the morph trajectory |
15
+
16
+ Total: **9,800 pairs**, of which 6,100 carry a clean metadata same/different label (Types 1-5) and 8,100 are morph trajectories.
17
+
18
+ Note: Type 6 pair count of 8,100 reflects 100 morph-trajectory cells, each sampled at 81 levels of interpolation; see `data/stimuli_interpol.csv` for trajectory metadata.
19
+
20
+ ## Naming convention
21
+
22
+ Stimulus IDs in `data/stimuli.csv` and the audio filenames in `data/audio/comparison/` follow the pattern:
23
+
24
+ - **Types 1-5:** `<type>_<reference_speaker>` for type-1 same-recording pairs; `<type>_<reference_speaker><variant>` where the comparison clip varies across A-E for types 2-5.
25
+ - Examples: `1_M01.wav` (Type 1, M01), `2_M01B.wav` (Type 2, M01 with variant B), `4_F03_F09B.wav` (Type 4, reference F03 paired with F09 variant B).
26
+ - **Type 6 morphs:** `6_<source>_<target>_<scale>.wav` where `<scale>` is an integer in [0, 100] indicating the interpolation point.
27
+
28
+ The stimulus ID matches the comparison-audio basename (without `.wav`) and is the key into the embedding `.npz` files.
29
+
30
+ ## Voice cloning
31
+
32
+ Voice clones (Types 3 and 5) were generated with a state-of-the-art TTS system from a short reference clip per speaker. The clone shares the metadata identity of the source speaker by construction; whether listeners hear the clone as that speaker is the per-pair question that the benchmark measures via `P(same)`.
33
+
34
+ ## Voice morphing
35
+
36
+ Type 6 pairs are continuously morphed by interpolating a voice-conversion latent between two source speakers at 81 levels per pair. Morphs have no clean metadata speaker label: at scale 0 the audio matches one speaker, at scale 100 the other, and intermediate scales sweep a perceptual continuum. This is the largest category in the dataset (8,100 of 9,800 pairs) and is designed to probe identity perception at fine resolution. The corresponding trajectory metadata (source speakers, scale value) is in `data/stimuli_interpol.csv`.
37
+
38
+ ## Why this design
39
+
40
+ The six types reflect three orthogonal axes:
41
+
42
+ 1. **Metadata identity** (same vs different speaker): Types 1-2-3 vs 4-5; Type 6 sweeps.
43
+ 2. **Synthesis** (real vs AI-generated): Types 1-2-4 vs 3-5; Type 6 is morphed.
44
+ 3. **Ambiguity** (concentrated vs spread `P(same)`): Types 1, 4, 5 are concentrated; Types 3 and 6 sweep, exposing where listener perception diverges from the metadata label.
45
+
46
+ Types 3 and 6 are where perceptual and metadata identity most often disagree, making them the centerpiece of the benchmark's perception-vs-metadata contrast.
requirements.txt ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core scientific stack
2
+ numpy>=1.24,<2.0
3
+ pandas>=2.0,<3.0
4
+ scipy>=1.10
5
+ scikit-learn>=1.3
6
+ matplotlib>=3.7
7
+ seaborn>=0.12
8
+ statsmodels>=0.14
9
+ tqdm>=4.65
10
+
11
+ # Audio I/O
12
+ librosa>=0.10
13
+ soundfile>=0.12
14
+
15
+ # Notebook (analysis)
16
+ jupyter>=1.0
17
+ notebook>=7.0
18
+ nbconvert>=7.0
19
+
20
+ # Speaker / speech representation models
21
+ torch>=2.0,<3.0
22
+ torchaudio>=2.0,<3.0
23
+ transformers>=4.35,<5.0 # wav2vec2, HuBERT, WavLM, XLS-R
24
+ speechbrain>=1.0 # ECAPA-TDNN
25
+ openai-whisper>=20231117 # Whisper
26
+ resemblyzer>=0.1.4 # GE2E (resemblyzer)
27
+
28
+ # Optional, heavy install (uncomment to enable TitaNet extraction):
29
+ # nemo_toolkit[asr]>=1.21.0 # NVIDIA NeMo (TitaNet)
30
+
31
+ # Notes:
32
+ # - x-vector and RawNet3 use the speechbrain / espnet ecosystem; specific
33
+ # checkpoint download is handled by the extraction scripts.
34
+ # - The release ships pre-extracted embeddings, so re-running extraction is optional.
samples/README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VIPBench reviewer-friendly sample subset
2
+
3
+ This directory holds a 5-speaker slice of the full release so reviewers can inspect the dataset without downloading the full ~5.8 GB bundle. Bundle size: **~115 MB** (audio + subsetted embeddings).
4
+
5
+ The format is identical to the full release; analyses that work on `data/` work on `samples/` by changing one path.
6
+
7
+ ## What's included
8
+
9
+ | Item | Count |
10
+ |---|---|
11
+ | Speakers | 5 (M01, F06, M11, F16, M21; one per sociophonetic group, 3M+2F) |
12
+ | Reference audio (R.wav) | 5 |
13
+ | Comparison audio | 490 (98 per speaker, all stimulus types) |
14
+ | Listener judgments | 6,401 |
15
+ | Pre-extracted embeddings | 10 models, subsetted to 495 keys each |
16
+ | Per-layer SSL embeddings | 5 models, subsetted to 495 keys each |
17
+ | Stimulus types covered | All 6 |
18
+
19
+ ## Layout
20
+
21
+ ```
22
+ samples/
23
+ README.md # this file
24
+ speakers.csv # 5 rows (subset of data/speakers.csv)
25
+ stimuli.csv # 490 rows (subset of data/stimuli.csv)
26
+ participant_responses.csv # 6,401 rows (subset of data/participant_responses.csv)
27
+ audio/
28
+ reference/ # 5 *R.wav (symlinks to ../../../exp_2)
29
+ comparison/ # 490 *.wav (symlinks to ../../../output)
30
+ embeddings/
31
+ rawnet3.npz, ecapa_tdnn.npz, ... (10 models)
32
+ layers/wav2vec2.npz, ... (5 SSL models)
33
+ ```
34
+
35
+ ## Quickstart
36
+
37
+ ```python
38
+ import numpy as np, pandas as pd
39
+ from sklearn.metrics.pairwise import cosine_similarity
40
+
41
+ stim = pd.read_csv('samples/stimuli.csv')
42
+ emb = dict(np.load('samples/embeddings/ecapa_tdnn.npz'))
43
+
44
+ cos = []
45
+ for _, row in stim.iterrows():
46
+ ref, cmp = emb[f'{row.reference}R'], emb[row.id]
47
+ cos.append(cosine_similarity([ref], [cmp])[0][0])
48
+ stim['cos_ecapa'] = cos
49
+
50
+ # P(same) target
51
+ stim['p_same'] = stim['same_vote'] / stim['num_response']
52
+
53
+ # Pearson r
54
+ print(stim[['cos_ecapa', 'p_same']].corr())
55
+ ```
56
+
57
+ ## Speaker subset
58
+
59
+ | ID | Group | Gender | Age bracket |
60
+ |---|---|---|---|
61
+ | M01 | 1 | M | 1 |
62
+ | F06 | 2 | F | 1 |
63
+ | M11 | 3 | M | 1 |
64
+ | F16 | 4 | F | 1 |
65
+ | M21 | 5 | M | 1 |
66
+
67
+ The `group` column is an integer code for the speaker's sociophonetic group (5 groups, 20 speakers each). See `docs/data_dictionary.md` for the integer-to-group mapping.
68
+
69
+ ## License
70
+
71
+ CC-BY-NC 4.0 for audio + judgments + embeddings; same as the full release. See `../LICENSE`.
samples/audio/reference/F06R.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2351910b9a2f3b0aec4595a91fdde7883414c66ce98d4c53acf9f99731db6b83
3
+ size 454632
samples/audio/reference/F16R.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4d8deb6c7caa938a5a0b728de8b0228a1697f021bd1d229e466af9dd6abb41b
3
+ size 347568
samples/audio/reference/M11R.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12f07d941f5c7a10ad2c9da3308cd7a3a64d3e2dccdf5d1dc5705a474487940c
3
+ size 385600
samples/embeddings/ecapa_tdnn.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c55b7bd8599f70ddbab8f1f99e023e2a158f29b3242e2db5dcc8cf99e148030a
3
+ size 484146
samples/embeddings/hubert.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5d4d8939a39420082ee683acfb76e53acaa67e4884aea2d1d19b338b97ee161
3
+ size 1541888
samples/embeddings/rawnet3.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e926bcf360cca11b6e614a9bd13e629e59af2e82fc9ee003a2bcbf66e64a1421
3
+ size 484498
samples/embeddings/resemblyzer.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e3f87ae717faf379acbae581a985f327e26dab8907a4bbc77f5809398244e72
3
+ size 455399
samples/embeddings/titanet.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93c98fa22ab683bd33dfe991a65d05947eeec893c9c8a97847ff68acbddbc01d
3
+ size 483731
samples/embeddings/wav2vec2.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8338ee10b7b318f380b547bd024d52734771fe692a653f418389ae64828a265b
3
+ size 1536096
samples/embeddings/wavlm.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8002e8e8d85a6b4268104ea8fe151c6a40ff8e0d0576a1dd02efb3bb630d122b
3
+ size 1540400
samples/embeddings/whisper.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acba595acca373dc2e014b7415d9d5c4b107c4812a7a1c0db882bb865ab03be7
3
+ size 1066617
samples/embeddings/xlsr.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdca0334789c840c1a8efe0dc8874b19803b259e14b1591e7fe867223a678316
3
+ size 2013391
samples/embeddings/xvector.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c5cf969e44d2db5f31a0a31188a1d7da561aa83bf4e6059f572dae2e39d1ba4
3
+ size 1055035
samples/participant_responses.csv ADDED
The diff for this file is too large to render. See raw diff
 
samples/speakers.csv ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ id,name,group,gender,age
2
+ M01,Vinny Guadagnino,1,1,1
3
+ M11,Kendrick Lamar,3,1,1
4
+ M21,Jimmy O. Yang,5,1,1
5
+ F06,Lainey Wilson,2,2,1
6
+ F16,Ana de Armas,4,2,1
samples/stimuli.csv ADDED
@@ -0,0 +1,491 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id,stimuli_type,reference,comparison,voice_clone,correct_answer,scale,num_response,same_vote,diff_vote,correct_vote,incorrect_vote,accuracy,group,gender,age
2
+ 1_M01,1,M01,M01,0,1,100,11,11,0,11,0,1.0,1,1,1
3
+ 2_M01B,2,M01,M01,0,1,100,75,34,41,34,41,0.4533333333333333,1,1,1
4
+ 2_M01C,2,M01,M01,0,1,100,35,31,4,31,4,0.8857142857142857,1,1,1
5
+ 2_M01D,2,M01,M01,0,1,100,35,14,21,14,21,0.4,1,1,1
6
+ 2_M01E,2,M01,M01,0,1,100,32,12,20,12,20,0.375,1,1,1
7
+ 3_M01B,3,M01,M01,1,1,100,11,8,3,8,3,0.7272727272727273,1,1,1
8
+ 3_M01C,3,M01,M01,1,1,100,11,10,1,10,1,0.9090909090909092,1,1,1
9
+ 3_M01D,3,M01,M01,1,1,100,10,5,5,5,5,0.5,1,1,1
10
+ 3_M01E,3,M01,M01,1,1,100,10,7,3,7,3,0.7,1,1,1
11
+ 4_M01_M05D,4,M01,M05,0,0,100,37,5,32,32,5,0.8648648648648649,1,1,1
12
+ 4_M01_M04D,4,M01,M04,0,0,100,35,2,33,33,2,0.9428571428571428,1,1,1
13
+ 4_M01_M02C,4,M01,M02,0,0,100,40,8,32,32,8,0.8,1,1,1
14
+ 4_M01_M03E,4,M01,M03,0,0,100,37,5,32,32,5,0.8648648648648649,1,1,1
15
+ 5_M01_M05D,5,M01,M05,1,0,100,10,2,8,8,2,0.8,1,1,1
16
+ 5_M01_M04D,5,M01,M04,1,0,100,10,4,6,6,4,0.6,1,1,1
17
+ 5_M01_M02C,5,M01,M02,1,0,100,10,4,6,6,4,0.6,1,1,1
18
+ 5_M01_M03E,5,M01,M03,1,0,100,10,4,6,6,4,0.6,1,1,1
19
+ 6_M01A_M02A_057,6,M01,M02,1,0,57,10,10,0,0,10,0.0,1,1,1
20
+ 6_M01A_M05A_098,6,M01,M05,1,0,98,10,4,6,6,4,0.6,1,1,1
21
+ 6_M01A_M03A_054,6,M01,M03,1,0,54,10,3,7,7,3,0.7,1,1,1
22
+ 6_M01A_M05A_042,6,M01,M05,1,0,42,10,5,5,5,5,0.5,1,1,1
23
+ 6_M01A_M03A_037,6,M01,M03,1,0,37,10,3,7,7,3,0.7,1,1,1
24
+ 6_M01A_M02A_073,6,M01,M02,1,0,73,10,8,2,2,8,0.2,1,1,1
25
+ 6_M01A_M03A_009,6,M01,M03,1,0,9,10,2,8,8,2,0.8,1,1,1
26
+ 6_M01A_M02A_053,6,M01,M02,1,0,53,10,7,3,3,7,0.3,1,1,1
27
+ 6_M01A_M04A_067,6,M01,M04,1,0,67,10,7,3,3,7,0.3,1,1,1
28
+ 6_M01A_M02A_014,6,M01,M02,1,0,14,10,2,8,8,2,0.8,1,1,1
29
+ 6_M01A_M03A_053,6,M01,M03,1,0,53,10,2,8,8,2,0.8,1,1,1
30
+ 6_M01A_M02A_010,6,M01,M02,1,0,10,10,4,6,6,4,0.6,1,1,1
31
+ 6_M01A_M01A_100,6,M01,M01,1,0,100,10,6,4,4,6,0.4,1,1,1
32
+ 6_M01A_M03A_072,6,M01,M03,1,0,72,10,8,2,2,8,0.2,1,1,1
33
+ 6_M01A_M02A_090,6,M01,M02,1,0,90,10,8,2,2,8,0.2,1,1,1
34
+ 6_M01A_M04A_052,6,M01,M04,1,0,52,10,1,9,9,1,0.9,1,1,1
35
+ 6_M01A_M05A_084,6,M01,M05,1,0,84,10,9,1,1,9,0.1,1,1,1
36
+ 6_M01A_M04A_045,6,M01,M04,1,0,45,10,1,9,9,1,0.9,1,1,1
37
+ 6_M01A_M02A_009,6,M01,M02,1,0,9,10,2,8,8,2,0.8,1,1,1
38
+ 6_M01A_M05A_074,6,M01,M05,1,0,74,10,7,3,3,7,0.3,1,1,1
39
+ 6_M01A_M05A_035,6,M01,M05,1,0,35,10,2,8,8,2,0.8,1,1,1
40
+ 6_M01A_M04A_007,6,M01,M04,1,0,7,10,1,9,9,1,0.9,1,1,1
41
+ 6_M01A_M05A_056,6,M01,M05,1,0,56,10,2,8,8,2,0.8,1,1,1
42
+ 6_M01A_M05A_014,6,M01,M05,1,0,14,10,2,8,8,2,0.8,1,1,1
43
+ 6_M01A_M04A_026,6,M01,M04,1,0,26,10,3,7,7,3,0.7,1,1,1
44
+ 6_M01A_M04A_024,6,M01,M04,1,0,24,10,2,8,8,2,0.8,1,1,1
45
+ 6_M01A_M04A_022,6,M01,M04,1,0,22,10,1,9,9,1,0.9,1,1,1
46
+ 6_M01A_M03A_095,6,M01,M03,1,0,95,10,9,1,1,9,0.1,1,1,1
47
+ 6_M01A_M02A_003,6,M01,M02,1,0,3,10,2,8,8,2,0.8,1,1,1
48
+ 6_M01A_M03A_059,6,M01,M03,1,0,59,10,3,7,7,3,0.7,1,1,1
49
+ 6_M01A_M04A_032,6,M01,M04,1,0,32,10,1,9,9,1,0.9,1,1,1
50
+ 6_M01A_M05A_053,6,M01,M05,1,0,53,10,5,5,5,5,0.5,1,1,1
51
+ 6_M01A_M02A_024,6,M01,M02,1,0,24,10,3,7,7,3,0.7,1,1,1
52
+ 6_M01A_M03A_083,6,M01,M03,1,0,83,10,7,3,3,7,0.3,1,1,1
53
+ 6_M01A_M03A_081,6,M01,M03,1,0,81,10,7,3,3,7,0.3,1,1,1
54
+ 6_M01A_M03A_079,6,M01,M03,1,0,79,10,4,6,6,4,0.6,1,1,1
55
+ 6_M01A_M04A_091,6,M01,M04,1,0,91,10,8,2,2,8,0.2,1,1,1
56
+ 6_M01A_M04A_062,6,M01,M04,1,0,62,10,6,4,4,6,0.4,1,1,1
57
+ 6_M01A_M05A_048,6,M01,M05,1,0,48,10,6,4,4,6,0.4,1,1,1
58
+ 6_M01A_M02A_011,6,M01,M02,1,0,11,10,3,7,7,3,0.7,1,1,1
59
+ 6_M01A_M05A_073,6,M01,M05,1,0,73,10,6,4,4,6,0.4,1,1,1
60
+ 6_M01B_M02B_019,6,M01,M02,1,0,19,10,2,8,8,2,0.8,1,1,1
61
+ 6_M01B_M04B_022,6,M01,M04,1,0,22,10,1,9,9,1,0.9,1,1,1
62
+ 6_M01B_M03B_053,6,M01,M03,1,0,53,10,2,8,8,2,0.8,1,1,1
63
+ 6_M01B_M03B_083,6,M01,M03,1,0,83,10,3,7,7,3,0.7,1,1,1
64
+ 6_M01B_M04B_007,6,M01,M04,1,0,7,10,1,9,9,1,0.9,1,1,1
65
+ 6_M01B_M05B_074,6,M01,M05,1,0,74,10,3,7,7,3,0.7,1,1,1
66
+ 6_M01B_M02B_003,6,M01,M02,1,0,3,10,5,5,5,5,0.5,1,1,1
67
+ 6_M01B_M03B_079,6,M01,M03,1,0,79,10,3,7,7,3,0.7,1,1,1
68
+ 6_M01B_M04B_091,6,M01,M04,1,0,91,10,5,5,5,5,0.5,1,1,1
69
+ 6_M01B_M03B_037,6,M01,M03,1,0,37,10,1,9,9,1,0.9,1,1,1
70
+ 6_M01B_M04B_026,6,M01,M04,1,0,26,10,2,8,8,2,0.8,1,1,1
71
+ 6_M01B_M04B_024,6,M01,M04,1,0,24,11,0,11,11,0,1.0,1,1,1
72
+ 6_M01B_M04B_067,6,M01,M04,1,0,67,10,2,8,8,2,0.8,1,1,1
73
+ 6_M01B_M02B_011,6,M01,M02,1,0,11,10,4,6,6,4,0.6,1,1,1
74
+ 6_M01B_M05B_035,6,M01,M05,1,0,35,10,3,7,7,3,0.7,1,1,1
75
+ 6_M01B_M03B_095,6,M01,M03,1,0,95,10,6,4,4,6,0.4,1,1,1
76
+ 6_M01B_M05B_084,6,M01,M05,1,0,84,10,3,7,7,3,0.7,1,1,1
77
+ 6_M01B_M05B_014,6,M01,M05,1,0,14,10,1,9,9,1,0.9,1,1,1
78
+ 6_M01B_M05B_056,6,M01,M05,1,0,56,10,3,7,7,3,0.7,1,1,1
79
+ 6_M01B_M05B_053,6,M01,M05,1,0,53,10,2,8,8,2,0.8,1,1,1
80
+ 6_M01B_M05B_073,6,M01,M05,1,0,73,10,3,7,7,3,0.7,1,1,1
81
+ 6_M01B_M05B_048,6,M01,M05,1,0,48,10,2,8,8,2,0.8,1,1,1
82
+ 6_M01B_M04B_062,6,M01,M04,1,0,62,10,3,7,7,3,0.7,1,1,1
83
+ 6_M01B_M04B_032,6,M01,M04,1,0,32,10,1,9,9,1,0.9,1,1,1
84
+ 6_M01B_M02B_009,6,M01,M02,1,0,9,10,6,4,4,6,0.4,1,1,1
85
+ 6_M01B_M02B_014,6,M01,M02,1,0,14,10,7,3,3,7,0.3,1,1,1
86
+ 6_M01B_M04B_052,6,M01,M04,1,0,52,10,1,9,9,1,0.9,1,1,1
87
+ 6_M01B_M02B_024,6,M01,M02,1,0,24,10,7,3,3,7,0.3,1,1,1
88
+ 6_M01B_M02B_073,6,M01,M02,1,0,73,11,4,7,7,4,0.6363636363636364,1,1,1
89
+ 6_M01B_M04B_045,6,M01,M04,1,0,45,10,1,9,9,1,0.9,1,1,1
90
+ 6_M01B_M03B_081,6,M01,M03,1,0,81,10,3,7,7,3,0.7,1,1,1
91
+ 6_M01B_M05B_042,6,M01,M05,1,0,42,10,1,9,9,1,0.9,1,1,1
92
+ 6_M01B_M03B_059,6,M01,M03,1,0,59,10,4,6,6,4,0.6,1,1,1
93
+ 6_M01B_M05B_098,6,M01,M05,1,0,98,10,4,6,6,4,0.6,1,1,1
94
+ 6_M01B_M03B_054,6,M01,M03,1,0,54,10,4,6,6,4,0.6,1,1,1
95
+ 6_M01B_M02B_053,6,M01,M02,1,0,53,10,5,5,5,5,0.5,1,1,1
96
+ 6_M01B_M03B_072,6,M01,M03,1,0,72,10,7,3,3,7,0.3,1,1,1
97
+ 6_M01B_M02B_057,6,M01,M02,1,0,57,10,4,6,6,4,0.6,1,1,1
98
+ 6_M01B_M03B_009,6,M01,M03,1,0,9,10,2,8,8,2,0.8,1,1,1
99
+ 6_M01B_M02B_010,6,M01,M02,1,0,10,10,5,5,5,5,0.5,1,1,1
100
+ 1_M11,1,M11,M11,0,1,100,35,35,0,35,0,1.0,3,1,1
101
+ 2_M11B,2,M11,M11,0,1,100,36,7,29,7,29,0.1944444444444444,3,1,1
102
+ 2_M11C,2,M11,M11,0,1,100,30,10,20,10,20,0.3333333333333333,3,1,1
103
+ 2_M11D,2,M11,M11,0,1,100,32,13,19,13,19,0.40625,3,1,1
104
+ 2_M11E,2,M11,M11,0,1,100,88,65,23,65,23,0.7386363636363636,3,1,1
105
+ 3_M11B,3,M11,M11,1,1,100,10,4,6,4,6,0.4,3,1,1
106
+ 3_M11C,3,M11,M11,1,1,100,10,6,4,6,4,0.6,3,1,1
107
+ 3_M11D,3,M11,M11,1,1,100,10,2,8,2,8,0.2,3,1,1
108
+ 3_M11E,3,M11,M11,1,1,100,10,4,6,4,6,0.4,3,1,1
109
+ 4_M11_M13C,4,M11,M13,0,0,100,36,5,31,31,5,0.8611111111111112,3,1,1
110
+ 4_M11_M12C,4,M11,M12,0,0,100,33,6,27,27,6,0.8181818181818182,3,1,1
111
+ 4_M11_M15E,4,M11,M15,0,0,100,40,23,17,17,23,0.425,3,1,1
112
+ 4_M11_M14C,4,M11,M14,0,0,100,30,4,26,26,4,0.8666666666666667,3,1,1
113
+ 5_M11_M13C,5,M11,M13,1,0,100,10,4,6,6,4,0.6,3,1,1
114
+ 5_M11_M12C,5,M11,M12,1,0,100,10,3,7,7,3,0.7,3,1,1
115
+ 5_M11_M15E,5,M11,M15,1,0,100,10,8,2,2,8,0.2,3,1,1
116
+ 5_M11_M14C,5,M11,M14,1,0,100,10,5,5,5,5,0.5,3,1,1
117
+ 6_M11A_M14A_052,6,M11,M14,1,0,52,10,0,10,10,0,1.0,3,1,1
118
+ 6_M11A_M12A_092,6,M11,M12,1,0,92,10,5,5,5,5,0.5,3,1,1
119
+ 6_M11A_M12A_005,6,M11,M12,1,0,5,10,0,10,10,0,1.0,3,1,1
120
+ 6_M11A_M13A_039,6,M11,M13,1,0,39,11,4,7,7,4,0.6363636363636364,3,1,1
121
+ 6_M11A_M13A_014,6,M11,M13,1,0,14,10,3,7,7,3,0.7,3,1,1
122
+ 6_M11A_M15A_045,6,M11,M15,1,0,45,10,2,8,8,2,0.8,3,1,1
123
+ 6_M11A_M15A_035,6,M11,M15,1,0,35,10,3,7,7,3,0.7,3,1,1
124
+ 6_M11A_M12A_041,6,M11,M12,1,0,41,11,5,6,6,5,0.5454545454545454,3,1,1
125
+ 6_M11A_M15A_065,6,M11,M15,1,0,65,10,4,6,6,4,0.6,3,1,1
126
+ 6_M11A_M13A_069,6,M11,M13,1,0,69,10,8,2,2,8,0.2,3,1,1
127
+ 6_M11A_M14A_021,6,M11,M14,1,0,21,10,1,9,9,1,0.9,3,1,1
128
+ 6_M11A_M15A_043,6,M11,M15,1,0,43,10,3,7,7,3,0.7,3,1,1
129
+ 6_M11A_M15A_008,6,M11,M15,1,0,8,10,1,9,9,1,0.9,3,1,1
130
+ 6_M11A_M12A_040,6,M11,M12,1,0,40,10,1,9,9,1,0.9,3,1,1
131
+ 6_M11A_M14A_034,6,M11,M14,1,0,34,10,1,9,9,1,0.9,3,1,1
132
+ 6_M11A_M15A_073,6,M11,M15,1,0,73,10,9,1,1,9,0.1,3,1,1
133
+ 6_M11A_M15A_031,6,M11,M15,1,0,31,10,1,9,9,1,0.9,3,1,1
134
+ 6_M11A_M13A_018,6,M11,M13,1,0,18,10,2,8,8,2,0.8,3,1,1
135
+ 6_M11A_M14A_011,6,M11,M14,1,0,11,10,0,10,10,0,1.0,3,1,1
136
+ 6_M11A_M13A_030,6,M11,M13,1,0,30,10,3,7,7,3,0.7,3,1,1
137
+ 6_M11A_M15A_042,6,M11,M15,1,0,42,10,3,7,7,3,0.7,3,1,1
138
+ 6_M11A_M14A_042,6,M11,M14,1,0,42,10,2,8,8,2,0.8,3,1,1
139
+ 6_M11A_M12A_050,6,M11,M12,1,0,50,10,2,8,8,2,0.8,3,1,1
140
+ 6_M11A_M15A_055,6,M11,M15,1,0,55,11,8,3,3,8,0.2727272727272727,3,1,1
141
+ 6_M11A_M14A_050,6,M11,M14,1,0,50,10,0,10,10,0,1.0,3,1,1
142
+ 6_M11A_M12A_086,6,M11,M12,1,0,86,10,6,4,4,6,0.4,3,1,1
143
+ 6_M11A_M12A_028,6,M11,M12,1,0,28,10,3,7,7,3,0.7,3,1,1
144
+ 6_M11A_M14A_059,6,M11,M14,1,0,59,10,4,6,6,4,0.6,3,1,1
145
+ 6_M11A_M13A_026,6,M11,M13,1,0,26,10,4,6,6,4,0.6,3,1,1
146
+ 6_M11A_M13A_085,6,M11,M13,1,0,85,10,7,3,3,7,0.3,3,1,1
147
+ 6_M11A_M14A_057,6,M11,M14,1,0,57,10,5,5,5,5,0.5,3,1,1
148
+ 6_M11A_M14A_066,6,M11,M14,1,0,66,10,6,4,4,6,0.4,3,1,1
149
+ 6_M11A_M11A_100,6,M11,M11,1,0,100,11,8,3,3,8,0.2727272727272727,3,1,1
150
+ 6_M11A_M12A_090,6,M11,M12,1,0,90,10,9,1,1,9,0.1,3,1,1
151
+ 6_M11A_M13A_033,6,M11,M13,1,0,33,10,6,4,4,6,0.4,3,1,1
152
+ 6_M11A_M12A_010,6,M11,M12,1,0,10,10,4,6,6,4,0.6,3,1,1
153
+ 6_M11A_M12A_031,6,M11,M12,1,0,31,10,4,6,6,4,0.6,3,1,1
154
+ 6_M11A_M13A_001,6,M11,M13,1,0,1,10,2,8,8,2,0.8,3,1,1
155
+ 6_M11A_M15A_039,6,M11,M15,1,0,39,10,1,9,9,1,0.9,3,1,1
156
+ 6_M11A_M13A_055,6,M11,M13,1,0,55,10,5,5,5,5,0.5,3,1,1
157
+ 6_M11A_M14A_041,6,M11,M14,1,0,41,11,1,10,10,1,0.9090909090909092,3,1,1
158
+ 6_M11B_M13B_055,6,M11,M13,1,0,55,10,0,10,10,0,1.0,3,1,1
159
+ 6_M11B_M12B_041,6,M11,M12,1,0,41,10,0,10,10,0,1.0,3,1,1
160
+ 6_M11B_M13B_039,6,M11,M13,1,0,39,10,4,6,6,4,0.6,3,1,1
161
+ 6_M11B_M14B_050,6,M11,M14,1,0,50,10,1,9,9,1,0.9,3,1,1
162
+ 6_M11B_M15B_035,6,M11,M15,1,0,35,10,2,8,8,2,0.8,3,1,1
163
+ 6_M11B_M15B_045,6,M11,M15,1,0,45,10,1,9,9,1,0.9,3,1,1
164
+ 6_M11B_M12B_092,6,M11,M12,1,0,92,11,2,9,9,2,0.8181818181818182,3,1,1
165
+ 6_M11B_M13B_014,6,M11,M13,1,0,14,10,3,7,7,3,0.7,3,1,1
166
+ 6_M11B_M15B_055,6,M11,M15,1,0,55,10,2,8,8,2,0.8,3,1,1
167
+ 6_M11B_M14B_034,6,M11,M14,1,0,34,10,2,8,8,2,0.8,3,1,1
168
+ 6_M11B_M14B_059,6,M11,M14,1,0,59,10,1,9,9,1,0.9,3,1,1
169
+ 6_M11B_M14B_052,6,M11,M14,1,0,52,10,1,9,9,1,0.9,3,1,1
170
+ 6_M11B_M15B_008,6,M11,M15,1,0,8,10,0,10,10,0,1.0,3,1,1
171
+ 6_M11B_M12B_005,6,M11,M12,1,0,5,10,2,8,8,2,0.8,3,1,1
172
+ 6_M11B_M12B_086,6,M11,M12,1,0,86,10,2,8,8,2,0.8,3,1,1
173
+ 6_M11B_M14B_011,6,M11,M14,1,0,11,10,1,9,9,1,0.9,3,1,1
174
+ 6_M11B_M15B_073,6,M11,M15,1,0,73,10,0,10,10,0,1.0,3,1,1
175
+ 6_M11B_M13B_069,6,M11,M13,1,0,69,10,2,8,8,2,0.8,3,1,1
176
+ 6_M11B_M12B_010,6,M11,M12,1,0,10,10,1,9,9,1,0.9,3,1,1
177
+ 6_M11B_M13B_018,6,M11,M13,1,0,18,10,2,8,8,2,0.8,3,1,1
178
+ 6_M11B_M14B_042,6,M11,M14,1,0,42,10,2,8,8,2,0.8,3,1,1
179
+ 6_M11B_M12B_050,6,M11,M12,1,0,50,10,2,8,8,2,0.8,3,1,1
180
+ 6_M11B_M13B_026,6,M11,M13,1,0,26,10,2,8,8,2,0.8,3,1,1
181
+ 6_M11B_M15B_039,6,M11,M15,1,0,39,10,1,9,9,1,0.9,3,1,1
182
+ 6_M11B_M12B_090,6,M11,M12,1,0,90,10,1,9,9,1,0.9,3,1,1
183
+ 6_M11B_M14B_041,6,M11,M14,1,0,41,10,2,8,8,2,0.8,3,1,1
184
+ 6_M11B_M12B_028,6,M11,M12,1,0,28,10,4,6,6,4,0.6,3,1,1
185
+ 6_M11B_M15B_031,6,M11,M15,1,0,31,10,1,9,9,1,0.9,3,1,1
186
+ 6_M11B_M13B_033,6,M11,M13,1,0,33,10,2,8,8,2,0.8,3,1,1
187
+ 6_M11B_M12B_031,6,M11,M12,1,0,31,10,0,10,10,0,1.0,3,1,1
188
+ 6_M11B_M15B_065,6,M11,M15,1,0,65,10,1,9,9,1,0.9,3,1,1
189
+ 6_M11B_M14B_057,6,M11,M14,1,0,57,10,2,8,8,2,0.8,3,1,1
190
+ 6_M11B_M14B_066,6,M11,M14,1,0,66,10,2,8,8,2,0.8,3,1,1
191
+ 6_M11B_M15B_043,6,M11,M15,1,0,43,10,2,8,8,2,0.8,3,1,1
192
+ 6_M11B_M15B_042,6,M11,M15,1,0,42,11,4,7,7,4,0.6363636363636364,3,1,1
193
+ 6_M11B_M14B_021,6,M11,M14,1,0,21,10,0,10,10,0,1.0,3,1,1
194
+ 6_M11B_M13B_001,6,M11,M13,1,0,1,10,3,7,7,3,0.7,3,1,1
195
+ 6_M11B_M13B_030,6,M11,M13,1,0,30,10,2,8,8,2,0.8,3,1,1
196
+ 6_M11B_M13B_085,6,M11,M13,1,0,85,10,1,9,9,1,0.9,3,1,1
197
+ 6_M11B_M12B_040,6,M11,M12,1,0,40,10,0,10,10,0,1.0,3,1,1
198
+ 1_M21,1,M21,M21,0,1,100,30,24,6,24,6,0.8,5,1,1
199
+ 2_M21B,2,M21,M21,0,1,100,71,52,19,52,19,0.7323943661971831,5,1,1
200
+ 2_M21C,2,M21,M21,0,1,100,36,7,29,7,29,0.1944444444444444,5,1,1
201
+ 2_M21D,2,M21,M21,0,1,100,36,21,15,21,15,0.5833333333333334,5,1,1
202
+ 2_M21E,2,M21,M21,0,1,100,28,26,2,26,2,0.9285714285714286,5,1,1
203
+ 3_M21B,3,M21,M21,1,1,100,10,6,4,6,4,0.6,5,1,1
204
+ 3_M21C,3,M21,M21,1,1,100,10,4,6,4,6,0.4,5,1,1
205
+ 3_M21D,3,M21,M21,1,1,100,10,1,9,1,9,0.1,5,1,1
206
+ 3_M21E,3,M21,M21,1,1,100,10,8,2,8,2,0.8,5,1,1
207
+ 4_M21_M22D,4,M21,M22,0,0,100,36,9,27,27,9,0.75,5,1,1
208
+ 4_M21_M24B,4,M21,M24,0,0,100,34,8,26,26,8,0.7647058823529411,5,1,1
209
+ 4_M21_M25B,4,M21,M25,0,0,100,70,33,37,37,33,0.5285714285714286,5,1,1
210
+ 4_M21_M23D,4,M21,M23,0,0,100,37,6,31,31,6,0.8378378378378378,5,1,1
211
+ 5_M21_M22D,5,M21,M22,1,0,100,10,2,8,8,2,0.8,5,1,1
212
+ 5_M21_M24B,5,M21,M24,1,0,100,10,2,8,8,2,0.8,5,1,1
213
+ 5_M21_M25B,5,M21,M25,1,0,100,10,5,5,5,5,0.5,5,1,1
214
+ 5_M21_M23D,5,M21,M23,1,0,100,10,2,8,8,2,0.8,5,1,1
215
+ 6_M21A_M21A_100,6,M21,M21,1,0,100,10,7,3,3,7,0.3,5,1,1
216
+ 6_M21A_M24A_061,6,M21,M24,1,0,61,10,7,3,3,7,0.3,5,1,1
217
+ 6_M21A_M24A_091,6,M21,M24,1,0,91,10,4,6,6,4,0.6,5,1,1
218
+ 6_M21A_M24A_033,6,M21,M24,1,0,33,10,1,9,9,1,0.9,5,1,1
219
+ 6_M21A_M22A_077,6,M21,M22,1,0,77,10,5,5,5,5,0.5,5,1,1
220
+ 6_M21A_M24A_010,6,M21,M24,1,0,10,10,2,8,8,2,0.8,5,1,1
221
+ 6_M21A_M23A_089,6,M21,M23,1,0,89,10,7,3,3,7,0.3,5,1,1
222
+ 6_M21A_M25A_053,6,M21,M25,1,0,53,10,6,4,4,6,0.4,5,1,1
223
+ 6_M21A_M25A_067,6,M21,M25,1,0,67,10,6,4,4,6,0.4,5,1,1
224
+ 6_M21A_M22A_036,6,M21,M22,1,0,36,10,5,5,5,5,0.5,5,1,1
225
+ 6_M21A_M22A_018,6,M21,M22,1,0,18,10,1,9,9,1,0.9,5,1,1
226
+ 6_M21A_M25A_043,6,M21,M25,1,0,43,10,3,7,7,3,0.7,5,1,1
227
+ 6_M21A_M23A_059,6,M21,M23,1,0,59,10,4,6,6,4,0.6,5,1,1
228
+ 6_M21A_M23A_038,6,M21,M23,1,0,38,10,1,9,9,1,0.9,5,1,1
229
+ 6_M21A_M25A_057,6,M21,M25,1,0,57,10,2,8,8,2,0.8,5,1,1
230
+ 6_M21A_M22A_028,6,M21,M22,1,0,28,10,1,9,9,1,0.9,5,1,1
231
+ 6_M21A_M23A_056,6,M21,M23,1,0,56,10,7,3,3,7,0.3,5,1,1
232
+ 6_M21A_M24A_079,6,M21,M24,1,0,79,10,4,6,6,4,0.6,5,1,1
233
+ 6_M21A_M23A_008,6,M21,M23,1,0,8,10,1,9,9,1,0.9,5,1,1
234
+ 6_M21A_M25A_069,6,M21,M25,1,0,69,10,8,2,2,8,0.2,5,1,1
235
+ 6_M21A_M22A_026,6,M21,M22,1,0,26,10,4,6,6,4,0.6,5,1,1
236
+ 6_M21A_M22A_076,6,M21,M22,1,0,76,10,6,4,4,6,0.4,5,1,1
237
+ 6_M21A_M25A_011,6,M21,M25,1,0,11,10,4,6,6,4,0.6,5,1,1
238
+ 6_M21A_M24A_030,6,M21,M24,1,0,30,10,4,6,6,4,0.6,5,1,1
239
+ 6_M21A_M23A_088,6,M21,M23,1,0,88,10,8,2,2,8,0.2,5,1,1
240
+ 6_M21A_M25A_045,6,M21,M25,1,0,45,10,7,3,3,7,0.3,5,1,1
241
+ 6_M21A_M23A_096,6,M21,M23,1,0,96,11,9,2,2,9,0.1818181818181818,5,1,1
242
+ 6_M21A_M22A_037,6,M21,M22,1,0,37,10,2,8,8,2,0.8,5,1,1
243
+ 6_M21A_M25A_054,6,M21,M25,1,0,54,10,7,3,3,7,0.3,5,1,1
244
+ 6_M21A_M23A_028,6,M21,M23,1,0,28,11,2,9,9,2,0.8181818181818182,5,1,1
245
+ 6_M21A_M24A_032,6,M21,M24,1,0,32,10,1,9,9,1,0.9,5,1,1
246
+ 6_M21A_M24A_084,6,M21,M24,1,0,84,10,5,5,5,5,0.5,5,1,1
247
+ 6_M21A_M23A_032,6,M21,M23,1,0,32,10,2,8,8,2,0.8,5,1,1
248
+ 6_M21A_M25A_055,6,M21,M25,1,0,55,10,5,5,5,5,0.5,5,1,1
249
+ 6_M21A_M25A_093,6,M21,M25,1,0,93,10,7,3,3,7,0.3,5,1,1
250
+ 6_M21A_M22A_024,6,M21,M22,1,0,24,10,3,7,7,3,0.7,5,1,1
251
+ 6_M21A_M24A_080,6,M21,M24,1,0,80,10,8,2,2,8,0.2,5,1,1
252
+ 6_M21A_M22A_056,6,M21,M22,1,0,56,10,2,8,8,2,0.8,5,1,1
253
+ 6_M21A_M23A_013,6,M21,M23,1,0,13,10,1,9,9,1,0.9,5,1,1
254
+ 6_M21A_M22A_007,6,M21,M22,1,0,7,10,2,8,8,2,0.8,5,1,1
255
+ 6_M21A_M24A_093,6,M21,M24,1,0,93,10,3,7,7,3,0.7,5,1,1
256
+ 6_M21B_M25B_067,6,M21,M25,1,0,67,10,6,4,4,6,0.4,5,1,1
257
+ 6_M21B_M22B_018,6,M21,M22,1,0,18,10,1,9,9,1,0.9,5,1,1
258
+ 6_M21B_M25B_093,6,M21,M25,1,0,93,11,4,7,7,4,0.6363636363636364,5,1,1
259
+ 6_M21B_M22B_024,6,M21,M22,1,0,24,10,1,9,9,1,0.9,5,1,1
260
+ 6_M21B_M25B_057,6,M21,M25,1,0,57,10,4,6,6,4,0.6,5,1,1
261
+ 6_M21B_M24B_061,6,M21,M24,1,0,61,10,5,5,5,5,0.5,5,1,1
262
+ 6_M21B_M24B_033,6,M21,M24,1,0,33,10,0,10,10,0,1.0,5,1,1
263
+ 6_M21B_M23B_089,6,M21,M23,1,0,89,10,9,1,1,9,0.1,5,1,1
264
+ 6_M21B_M23B_056,6,M21,M23,1,0,56,10,6,4,4,6,0.4,5,1,1
265
+ 6_M21B_M23B_028,6,M21,M23,1,0,28,10,3,7,7,3,0.7,5,1,1
266
+ 6_M21B_M25B_069,6,M21,M25,1,0,69,10,1,9,9,1,0.9,5,1,1
267
+ 6_M21B_M23B_008,6,M21,M23,1,0,8,10,2,8,8,2,0.8,5,1,1
268
+ 6_M21B_M23B_032,6,M21,M23,1,0,32,10,1,9,9,1,0.9,5,1,1
269
+ 6_M21B_M22B_077,6,M21,M22,1,0,77,10,4,6,6,4,0.6,5,1,1
270
+ 6_M21B_M25B_055,6,M21,M25,1,0,55,10,2,8,8,2,0.8,5,1,1
271
+ 6_M21B_M24B_079,6,M21,M24,1,0,79,10,3,7,7,3,0.7,5,1,1
272
+ 6_M21B_M25B_011,6,M21,M25,1,0,11,10,2,8,8,2,0.8,5,1,1
273
+ 6_M21B_M24B_080,6,M21,M24,1,0,80,10,7,3,3,7,0.3,5,1,1
274
+ 6_M21B_M22B_026,6,M21,M22,1,0,26,10,1,9,9,1,0.9,5,1,1
275
+ 6_M21B_M22B_056,6,M21,M22,1,0,56,11,1,10,10,1,0.9090909090909092,5,1,1
276
+ 6_M21B_M22B_007,6,M21,M22,1,0,7,10,1,9,9,1,0.9,5,1,1
277
+ 6_M21B_M25B_053,6,M21,M25,1,0,53,10,2,8,8,2,0.8,5,1,1
278
+ 6_M21B_M22B_037,6,M21,M22,1,0,37,10,3,7,7,3,0.7,5,1,1
279
+ 6_M21B_M25B_054,6,M21,M25,1,0,54,10,2,8,8,2,0.8,5,1,1
280
+ 6_M21B_M25B_043,6,M21,M25,1,0,43,10,5,5,5,5,0.5,5,1,1
281
+ 6_M21B_M24B_084,6,M21,M24,1,0,84,10,5,5,5,5,0.5,5,1,1
282
+ 6_M21B_M24B_074,6,M21,M24,1,0,74,10,5,5,5,5,0.5,5,1,1
283
+ 6_M21B_M22B_028,6,M21,M22,1,0,28,10,0,10,10,0,1.0,5,1,1
284
+ 6_M21B_M24B_093,6,M21,M24,1,0,93,10,6,4,4,6,0.4,5,1,1
285
+ 6_M21B_M25B_045,6,M21,M25,1,0,45,10,4,6,6,4,0.6,5,1,1
286
+ 6_M21B_M23B_006,6,M21,M23,1,0,6,10,3,7,7,3,0.7,5,1,1
287
+ 6_M21B_M23B_038,6,M21,M23,1,0,38,9,5,4,4,5,0.4444444444444444,5,1,1
288
+ 6_M21B_M22B_010,6,M21,M22,1,0,10,10,2,8,8,2,0.8,5,1,1
289
+ 6_M21B_M23B_096,6,M21,M23,1,0,96,10,3,7,7,3,0.7,5,1,1
290
+ 6_M21B_M23B_059,6,M21,M23,1,0,59,10,5,5,5,5,0.5,5,1,1
291
+ 6_M21B_M24B_032,6,M21,M24,1,0,32,10,5,5,5,5,0.5,5,1,1
292
+ 6_M21B_M22B_076,6,M21,M22,1,0,76,10,4,6,6,4,0.6,5,1,1
293
+ 6_M21B_M24B_030,6,M21,M24,1,0,30,10,2,8,8,2,0.8,5,1,1
294
+ 6_M21B_M23B_088,6,M21,M23,1,0,88,10,5,5,5,5,0.5,5,1,1
295
+ 6_M21B_M24B_010,6,M21,M24,1,0,10,10,3,7,7,3,0.7,5,1,1
296
+ 1_F16,1,F16,F16,0,1,100,37,36,1,36,1,0.972972972972973,4,2,1
297
+ 2_F16B,2,F16,F16,0,1,100,38,31,7,31,7,0.8157894736842105,4,2,1
298
+ 2_F16C,2,F16,F16,0,1,100,39,35,4,35,4,0.8974358974358975,4,2,1
299
+ 2_F16D,2,F16,F16,0,1,100,36,28,8,28,8,0.7777777777777778,4,2,1
300
+ 2_F16E,2,F16,F16,0,1,100,37,28,9,28,9,0.7567567567567568,4,2,1
301
+ 3_F16B,3,F16,F16,1,1,100,11,6,5,6,5,0.5454545454545454,4,2,1
302
+ 3_F16C,3,F16,F16,1,1,100,10,6,4,6,4,0.6,4,2,1
303
+ 3_F16D,3,F16,F16,1,1,100,10,6,4,6,4,0.6,4,2,1
304
+ 3_F16E,3,F16,F16,1,1,100,10,4,6,4,6,0.4,4,2,1
305
+ 4_F16_F17D,4,F16,F17,0,0,100,87,47,40,40,47,0.4597701149425287,4,2,1
306
+ 4_F16_F18E,4,F16,F18,0,0,100,33,18,15,15,18,0.4545454545454545,4,2,1
307
+ 4_F16_F19E,4,F16,F19,0,0,100,34,6,28,28,6,0.8235294117647058,4,2,1
308
+ 4_F16_F20C,4,F16,F20,0,0,100,38,1,37,37,1,0.9736842105263158,4,2,1
309
+ 5_F16_F17D,5,F16,F17,1,0,100,10,5,5,5,5,0.5,4,2,1
310
+ 5_F16_F18E,5,F16,F18,1,0,100,10,3,7,7,3,0.7,4,2,1
311
+ 5_F16_F19E,5,F16,F19,1,0,100,10,1,9,9,1,0.9,4,2,1
312
+ 5_F16_F20C,5,F16,F20,1,0,100,10,1,9,9,1,0.9,4,2,1
313
+ 6_F16A_F17A_071,6,F16,F17,1,0,71,10,7,3,3,7,0.3,4,2,1
314
+ 6_F16A_F18A_008,6,F16,F18,1,0,8,10,4,6,6,4,0.6,4,2,1
315
+ 6_F16A_F19A_048,6,F16,F19,1,0,48,10,5,5,5,5,0.5,4,2,1
316
+ 6_F16A_F19A_036,6,F16,F19,1,0,36,10,5,5,5,5,0.5,4,2,1
317
+ 6_F16A_F19A_070,6,F16,F19,1,0,70,10,8,2,2,8,0.2,4,2,1
318
+ 6_F16A_F18A_040,6,F16,F18,1,0,40,10,5,5,5,5,0.5,4,2,1
319
+ 6_F16A_F16A_100,6,F16,F16,1,0,100,10,5,5,5,5,0.5,4,2,1
320
+ 6_F16A_F20A_067,6,F16,F20,1,0,67,10,4,6,6,4,0.6,4,2,1
321
+ 6_F16A_F17A_016,6,F16,F17,1,0,16,10,6,4,4,6,0.4,4,2,1
322
+ 6_F16A_F20A_071,6,F16,F20,1,0,71,10,7,3,3,7,0.3,4,2,1
323
+ 6_F16A_F17A_009,6,F16,F17,1,0,9,10,5,5,5,5,0.5,4,2,1
324
+ 6_F16A_F20A_083,6,F16,F20,1,0,83,10,3,7,7,3,0.7,4,2,1
325
+ 6_F16A_F17A_081,6,F16,F17,1,0,81,10,8,2,2,8,0.2,4,2,1
326
+ 6_F16A_F17A_068,6,F16,F17,1,0,68,10,6,4,4,6,0.4,4,2,1
327
+ 6_F16A_F20A_027,6,F16,F20,1,0,27,10,2,8,8,2,0.8,4,2,1
328
+ 6_F16A_F19A_009,6,F16,F19,1,0,9,10,2,8,8,2,0.8,4,2,1
329
+ 6_F16A_F18A_003,6,F16,F18,1,0,3,10,6,4,4,6,0.4,4,2,1
330
+ 6_F16A_F17A_028,6,F16,F17,1,0,28,10,7,3,3,7,0.3,4,2,1
331
+ 6_F16A_F19A_030,6,F16,F19,1,0,30,10,2,8,8,2,0.8,4,2,1
332
+ 6_F16A_F17A_098,6,F16,F17,1,0,98,10,6,4,4,6,0.4,4,2,1
333
+ 6_F16A_F18A_064,6,F16,F18,1,0,64,10,6,4,4,6,0.4,4,2,1
334
+ 6_F16A_F20A_002,6,F16,F20,1,0,2,10,3,7,7,3,0.7,4,2,1
335
+ 6_F16A_F18A_053,6,F16,F18,1,0,53,10,9,1,1,9,0.1,4,2,1
336
+ 6_F16A_F19A_035,6,F16,F19,1,0,35,10,4,6,6,4,0.6,4,2,1
337
+ 6_F16A_F18A_066,6,F16,F18,1,0,66,10,6,4,4,6,0.4,4,2,1
338
+ 6_F16A_F19A_023,6,F16,F19,1,0,23,10,5,5,5,5,0.5,4,2,1
339
+ 6_F16A_F18A_088,6,F16,F18,1,0,88,10,7,3,3,7,0.3,4,2,1
340
+ 6_F16A_F17A_052,6,F16,F17,1,0,52,10,8,2,2,8,0.2,4,2,1
341
+ 6_F16A_F19A_089,6,F16,F19,1,0,89,10,6,4,4,6,0.4,4,2,1
342
+ 6_F16A_F18A_077,6,F16,F18,1,0,77,10,4,6,6,4,0.6,4,2,1
343
+ 6_F16A_F17A_007,6,F16,F17,1,0,7,10,9,1,1,9,0.1,4,2,1
344
+ 6_F16A_F20A_060,6,F16,F20,1,0,60,10,4,6,6,4,0.6,4,2,1
345
+ 6_F16A_F20A_066,6,F16,F20,1,0,66,10,7,3,3,7,0.3,4,2,1
346
+ 6_F16A_F19A_028,6,F16,F19,1,0,28,10,2,8,8,2,0.8,4,2,1
347
+ 6_F16A_F18A_075,6,F16,F18,1,0,75,10,2,8,8,2,0.8,4,2,1
348
+ 6_F16A_F20A_095,6,F16,F20,1,0,95,10,5,5,5,5,0.5,4,2,1
349
+ 6_F16A_F19A_060,6,F16,F19,1,0,60,10,3,7,7,3,0.7,4,2,1
350
+ 6_F16A_F20A_086,6,F16,F20,1,0,86,10,3,7,7,3,0.7,4,2,1
351
+ 6_F16A_F20A_084,6,F16,F20,1,0,84,10,4,6,6,4,0.6,4,2,1
352
+ 6_F16A_F18A_069,6,F16,F18,1,0,69,10,5,5,5,5,0.5,4,2,1
353
+ 6_F16A_F17A_086,6,F16,F17,1,0,86,10,7,3,3,7,0.3,4,2,1
354
+ 6_F16B_F19B_070,6,F16,F19,1,0,70,10,6,4,4,6,0.4,4,2,1
355
+ 6_F16B_F20B_060,6,F16,F20,1,0,60,10,1,9,9,1,0.9,4,2,1
356
+ 6_F16B_F19B_028,6,F16,F19,1,0,28,10,0,10,10,0,1.0,4,2,1
357
+ 6_F16B_F20B_095,6,F16,F20,1,0,95,10,5,5,5,5,0.5,4,2,1
358
+ 6_F16B_F17B_081,6,F16,F17,1,0,81,10,8,2,2,8,0.2,4,2,1
359
+ 6_F16B_F20B_083,6,F16,F20,1,0,83,10,4,6,6,4,0.6,4,2,1
360
+ 6_F16B_F18B_053,6,F16,F18,1,0,53,11,10,1,1,10,0.0909090909090909,4,2,1
361
+ 6_F16B_F17B_007,6,F16,F17,1,0,7,10,3,7,7,3,0.7,4,2,1
362
+ 6_F16B_F20B_002,6,F16,F20,1,0,2,10,3,7,7,3,0.7,4,2,1
363
+ 6_F16B_F19B_089,6,F16,F19,1,0,89,10,5,5,5,5,0.5,4,2,1
364
+ 6_F16B_F19B_009,6,F16,F19,1,0,9,10,3,7,7,3,0.7,4,2,1
365
+ 6_F16B_F17B_028,6,F16,F17,1,0,28,10,6,4,4,6,0.4,4,2,1
366
+ 6_F16B_F19B_048,6,F16,F19,1,0,48,10,3,7,7,3,0.7,4,2,1
367
+ 6_F16B_F18B_003,6,F16,F18,1,0,3,10,7,3,3,7,0.3,4,2,1
368
+ 6_F16B_F17B_052,6,F16,F17,1,0,52,10,5,5,5,5,0.5,4,2,1
369
+ 6_F16B_F17B_016,6,F16,F17,1,0,16,10,5,5,5,5,0.5,4,2,1
370
+ 6_F16B_F20B_027,6,F16,F20,1,0,27,10,3,7,7,3,0.7,4,2,1
371
+ 6_F16B_F18B_008,6,F16,F18,1,0,8,10,7,3,3,7,0.3,4,2,1
372
+ 6_F16B_F18B_040,6,F16,F18,1,0,40,10,7,3,3,7,0.3,4,2,1
373
+ 6_F16B_F20B_067,6,F16,F20,1,0,67,10,2,8,8,2,0.8,4,2,1
374
+ 6_F16B_F19B_023,6,F16,F19,1,0,23,10,3,7,7,3,0.7,4,2,1
375
+ 6_F16B_F18B_066,6,F16,F18,1,0,66,10,7,3,3,7,0.3,4,2,1
376
+ 6_F16B_F17B_071,6,F16,F17,1,0,71,10,5,5,5,5,0.5,4,2,1
377
+ 6_F16B_F19B_060,6,F16,F19,1,0,60,10,2,8,8,2,0.8,4,2,1
378
+ 6_F16B_F20B_086,6,F16,F20,1,0,86,10,4,6,6,4,0.6,4,2,1
379
+ 6_F16B_F18B_075,6,F16,F18,1,0,75,10,5,5,5,5,0.5,4,2,1
380
+ 6_F16B_F18B_088,6,F16,F18,1,0,88,10,7,3,3,7,0.3,4,2,1
381
+ 6_F16B_F20B_071,6,F16,F20,1,0,71,10,4,6,6,4,0.6,4,2,1
382
+ 6_F16B_F18B_077,6,F16,F18,1,0,77,10,4,6,6,4,0.6,4,2,1
383
+ 6_F16B_F18B_064,6,F16,F18,1,0,64,10,5,5,5,5,0.5,4,2,1
384
+ 6_F16B_F19B_036,6,F16,F19,1,0,36,10,5,5,5,5,0.5,4,2,1
385
+ 6_F16B_F17B_068,6,F16,F17,1,0,68,10,5,5,5,5,0.5,4,2,1
386
+ 6_F16B_F20B_066,6,F16,F20,1,0,66,11,4,7,7,4,0.6363636363636364,4,2,1
387
+ 6_F16B_F17B_086,6,F16,F17,1,0,86,10,9,1,1,9,0.1,4,2,1
388
+ 6_F16B_F18B_069,6,F16,F18,1,0,69,10,7,3,3,7,0.3,4,2,1
389
+ 6_F16B_F17B_098,6,F16,F17,1,0,98,10,6,4,4,6,0.4,4,2,1
390
+ 6_F16B_F19B_035,6,F16,F19,1,0,35,10,3,7,7,3,0.7,4,2,1
391
+ 6_F16B_F20B_084,6,F16,F20,1,0,84,10,6,4,4,6,0.4,4,2,1
392
+ 6_F16B_F17B_009,6,F16,F17,1,0,9,10,2,8,8,2,0.8,4,2,1
393
+ 6_F16B_F19B_030,6,F16,F19,1,0,30,10,3,7,7,3,0.7,4,2,1
394
+ 1_F06,1,F06,F06,0,1,100,29,26,3,26,3,0.896551724137931,2,2,1
395
+ 2_F06B,2,F06,F06,0,1,100,74,64,10,64,10,0.8648648648648649,2,2,1
396
+ 2_F06C,2,F06,F06,0,1,100,87,76,11,76,11,0.8735632183908046,2,2,1
397
+ 2_F06D,2,F06,F06,0,1,100,28,22,6,22,6,0.7857142857142857,2,2,1
398
+ 2_F06E,2,F06,F06,0,1,100,33,27,6,27,6,0.8181818181818182,2,2,1
399
+ 3_F06B,3,F06,F06,1,1,100,10,9,1,9,1,0.9,2,2,1
400
+ 3_F06C,3,F06,F06,1,1,100,10,5,5,5,5,0.5,2,2,1
401
+ 3_F06D,3,F06,F06,1,1,100,10,6,4,6,4,0.6,2,2,1
402
+ 3_F06E,3,F06,F06,1,1,100,10,7,3,7,3,0.7,2,2,1
403
+ 4_F06_F08C,4,F06,F08,0,0,100,32,15,17,17,15,0.53125,2,2,1
404
+ 4_F06_F09E,4,F06,F09,0,0,100,38,8,30,30,8,0.7894736842105263,2,2,1
405
+ 4_F06_F07E,4,F06,F07,0,0,100,74,20,54,54,20,0.7297297297297297,2,2,1
406
+ 4_F06_F10C,4,F06,F10,0,0,100,37,12,25,25,12,0.6756756756756757,2,2,1
407
+ 5_F06_F08C,5,F06,F08,1,0,100,10,2,8,8,2,0.8,2,2,1
408
+ 5_F06_F09E,5,F06,F09,1,0,100,10,1,9,9,1,0.9,2,2,1
409
+ 5_F06_F07E,5,F06,F07,1,0,100,10,2,8,8,2,0.8,2,2,1
410
+ 5_F06_F10C,5,F06,F10,1,0,100,10,2,8,8,2,0.8,2,2,1
411
+ 6_F06A_F08A_066,6,F06,F08,1,0,66,10,5,5,5,5,0.5,2,2,1
412
+ 6_F06A_F08A_075,6,F06,F08,1,0,75,10,6,4,4,6,0.4,2,2,1
413
+ 6_F06A_F09A_082,6,F06,F09,1,0,82,11,5,6,6,5,0.5454545454545454,2,2,1
414
+ 6_F06A_F06A_100,6,F06,F06,1,0,100,10,4,6,6,4,0.6,2,2,1
415
+ 6_F06A_F07A_056,6,F06,F07,1,0,56,10,3,7,7,3,0.7,2,2,1
416
+ 6_F06A_F07A_066,6,F06,F07,1,0,66,10,5,5,5,5,0.5,2,2,1
417
+ 6_F06A_F08A_011,6,F06,F08,1,0,11,10,1,9,9,1,0.9,2,2,1
418
+ 6_F06A_F07A_003,6,F06,F07,1,0,3,10,0,10,10,0,1.0,2,2,1
419
+ 6_F06A_F10A_014,6,F06,F10,1,0,14,10,2,8,8,2,0.8,2,2,1
420
+ 6_F06A_F09A_048,6,F06,F09,1,0,48,10,4,6,6,4,0.6,2,2,1
421
+ 6_F06A_F10A_093,6,F06,F10,1,0,93,10,6,4,4,6,0.4,2,2,1
422
+ 6_F06A_F10A_057,6,F06,F10,1,0,57,10,4,6,6,4,0.6,2,2,1
423
+ 6_F06A_F07A_014,6,F06,F07,1,0,14,10,0,10,10,0,1.0,2,2,1
424
+ 6_F06A_F08A_042,6,F06,F08,1,0,42,10,6,4,4,6,0.4,2,2,1
425
+ 6_F06A_F10A_050,6,F06,F10,1,0,50,10,0,10,10,0,1.0,2,2,1
426
+ 6_F06A_F07A_073,6,F06,F07,1,0,73,10,2,8,8,2,0.8,2,2,1
427
+ 6_F06A_F09A_065,6,F06,F09,1,0,65,10,6,4,4,6,0.4,2,2,1
428
+ 6_F06A_F07A_059,6,F06,F07,1,0,59,10,8,2,2,8,0.2,2,2,1
429
+ 6_F06A_F08A_031,6,F06,F08,1,0,31,10,6,4,4,6,0.4,2,2,1
430
+ 6_F06A_F10A_065,6,F06,F10,1,0,65,10,2,8,8,2,0.8,2,2,1
431
+ 6_F06A_F08A_096,6,F06,F08,1,0,96,10,6,4,4,6,0.4,2,2,1
432
+ 6_F06A_F08A_040,6,F06,F08,1,0,40,10,9,1,1,9,0.1,2,2,1
433
+ 6_F06A_F08A_018,6,F06,F08,1,0,18,10,5,5,5,5,0.5,2,2,1
434
+ 6_F06A_F10A_092,6,F06,F10,1,0,92,10,4,6,6,4,0.6,2,2,1
435
+ 6_F06A_F09A_067,6,F06,F09,1,0,67,10,8,2,2,8,0.2,2,2,1
436
+ 6_F06A_F09A_043,6,F06,F09,1,0,43,10,4,6,6,4,0.6,2,2,1
437
+ 6_F06A_F07A_027,6,F06,F07,1,0,27,10,6,4,4,6,0.4,2,2,1
438
+ 6_F06A_F09A_018,6,F06,F09,1,0,18,10,0,10,10,0,1.0,2,2,1
439
+ 6_F06A_F09A_047,6,F06,F09,1,0,47,10,5,5,5,5,0.5,2,2,1
440
+ 6_F06A_F10A_035,6,F06,F10,1,0,35,10,5,5,5,5,0.5,2,2,1
441
+ 6_F06A_F07A_035,6,F06,F07,1,0,35,10,3,7,7,3,0.7,2,2,1
442
+ 6_F06A_F10A_074,6,F06,F10,1,0,74,10,3,7,7,3,0.7,2,2,1
443
+ 6_F06A_F09A_010,6,F06,F09,1,0,10,10,3,7,7,3,0.7,2,2,1
444
+ 6_F06A_F10A_078,6,F06,F10,1,0,78,10,9,1,1,9,0.1,2,2,1
445
+ 6_F06A_F07A_057,6,F06,F07,1,0,57,10,6,4,4,6,0.4,2,2,1
446
+ 6_F06A_F09A_007,6,F06,F09,1,0,7,10,4,6,6,4,0.6,2,2,1
447
+ 6_F06A_F08A_082,6,F06,F08,1,0,82,10,4,6,6,4,0.6,2,2,1
448
+ 6_F06A_F07A_020,6,F06,F07,1,0,20,10,3,7,7,3,0.7,2,2,1
449
+ 6_F06A_F09A_098,6,F06,F09,1,0,98,10,7,3,3,7,0.3,2,2,1
450
+ 6_F06A_F10A_097,6,F06,F10,1,0,97,10,8,2,2,8,0.2,2,2,1
451
+ 6_F06A_F08A_050,6,F06,F08,1,0,50,10,6,4,4,6,0.4,2,2,1
452
+ 6_F06B_F09B_010,6,F06,F09,1,0,10,10,1,9,9,1,0.9,2,2,1
453
+ 6_F06B_F07B_073,6,F06,F07,1,0,73,11,1,10,10,1,0.9090909090909092,2,2,1
454
+ 6_F06B_F09B_018,6,F06,F09,1,0,18,10,1,9,9,1,0.9,2,2,1
455
+ 6_F06B_F07B_056,6,F06,F07,1,0,56,10,1,9,9,1,0.9,2,2,1
456
+ 6_F06B_F10B_014,6,F06,F10,1,0,14,11,3,8,8,3,0.7272727272727273,2,2,1
457
+ 6_F06B_F08B_066,6,F06,F08,1,0,66,11,9,2,2,9,0.1818181818181818,2,2,1
458
+ 6_F06B_F07B_035,6,F06,F07,1,0,35,10,2,8,8,2,0.8,2,2,1
459
+ 6_F06B_F08B_075,6,F06,F08,1,0,75,10,2,8,8,2,0.8,2,2,1
460
+ 6_F06B_F09B_067,6,F06,F09,1,0,67,10,2,8,8,2,0.8,2,2,1
461
+ 6_F06B_F07B_027,6,F06,F07,1,0,27,10,1,9,9,1,0.9,2,2,1
462
+ 6_F06B_F09B_082,6,F06,F09,1,0,82,10,3,7,7,3,0.7,2,2,1
463
+ 6_F06B_F08B_011,6,F06,F08,1,0,11,10,7,3,3,7,0.3,2,2,1
464
+ 6_F06B_F07B_003,6,F06,F07,1,0,3,10,3,7,7,3,0.7,2,2,1
465
+ 6_F06B_F10B_035,6,F06,F10,1,0,35,10,6,4,4,6,0.4,2,2,1
466
+ 6_F06B_F07B_020,6,F06,F07,1,0,20,10,1,9,9,1,0.9,2,2,1
467
+ 6_F06B_F10B_074,6,F06,F10,1,0,74,10,8,2,2,8,0.2,2,2,1
468
+ 6_F06B_F09B_065,6,F06,F09,1,0,65,10,2,8,8,2,0.8,2,2,1
469
+ 6_F06B_F09B_048,6,F06,F09,1,0,48,10,5,5,5,5,0.5,2,2,1
470
+ 6_F06B_F10B_078,6,F06,F10,1,0,78,10,1,9,9,1,0.9,2,2,1
471
+ 6_F06B_F10B_097,6,F06,F10,1,0,97,11,2,9,9,2,0.8181818181818182,2,2,1
472
+ 6_F06B_F09B_047,6,F06,F09,1,0,47,10,2,8,8,2,0.8,2,2,1
473
+ 6_F06B_F10B_092,6,F06,F10,1,0,92,10,2,8,8,2,0.8,2,2,1
474
+ 6_F06B_F08B_040,6,F06,F08,1,0,40,10,5,5,5,5,0.5,2,2,1
475
+ 6_F06B_F10B_065,6,F06,F10,1,0,65,10,1,9,9,1,0.9,2,2,1
476
+ 6_F06B_F09B_098,6,F06,F09,1,0,98,10,4,6,6,4,0.6,2,2,1
477
+ 6_F06B_F07B_066,6,F06,F07,1,0,66,10,0,10,10,0,1.0,2,2,1
478
+ 6_F06B_F09B_043,6,F06,F09,1,0,43,10,6,4,4,6,0.4,2,2,1
479
+ 6_F06B_F10B_050,6,F06,F10,1,0,50,10,0,10,10,0,1.0,2,2,1
480
+ 6_F06B_F07B_059,6,F06,F07,1,0,59,10,4,6,6,4,0.6,2,2,1
481
+ 6_F06B_F10B_093,6,F06,F10,1,0,93,10,3,7,7,3,0.7,2,2,1
482
+ 6_F06B_F08B_042,6,F06,F08,1,0,42,11,7,4,4,7,0.3636363636363636,2,2,1
483
+ 6_F06B_F07B_057,6,F06,F07,1,0,57,10,2,8,8,2,0.8,2,2,1
484
+ 6_F06B_F08B_018,6,F06,F08,1,0,18,10,4,6,6,4,0.6,2,2,1
485
+ 6_F06B_F08B_082,6,F06,F08,1,0,82,10,3,7,7,3,0.7,2,2,1
486
+ 6_F06B_F08B_031,6,F06,F08,1,0,31,10,7,3,3,7,0.3,2,2,1
487
+ 6_F06B_F08B_096,6,F06,F08,1,0,96,10,2,8,8,2,0.8,2,2,1
488
+ 6_F06B_F08B_050,6,F06,F08,1,0,50,10,3,7,7,3,0.7,2,2,1
489
+ 6_F06B_F07B_014,6,F06,F07,1,0,14,10,5,5,5,5,0.5,2,2,1
490
+ 6_F06B_F09B_007,6,F06,F09,1,0,7,10,0,10,10,0,1.0,2,2,1
491
+ 6_F06B_F10B_057,6,F06,F10,1,0,57,10,3,7,7,3,0.7,2,2,1