Datasets:
docs: rewrite README to plan v3 format
Browse files
README.md
CHANGED
|
@@ -1,160 +1,107 @@
|
|
| 1 |
---
|
| 2 |
license: other
|
| 3 |
language:
|
| 4 |
-
- en
|
|
|
|
| 5 |
task_categories:
|
| 6 |
-
- audio-classification
|
| 7 |
-
pretty_name: ASVspoof2019LA
|
| 8 |
size_categories:
|
| 9 |
-
- 10K<n<100K
|
| 10 |
configs:
|
| 11 |
-
- config_name: default
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
tags:
|
| 16 |
-
-
|
| 17 |
-
- audio
|
| 18 |
-
- speech
|
| 19 |
-
-
|
| 20 |
-
-
|
| 21 |
-
- anti-spoofing
|
| 22 |
-
- logical-access
|
| 23 |
-
- ASVspoof
|
| 24 |
-
- arxiv:1911.01601
|
| 25 |
paperswithcode_id: asvspoof-2019
|
|
|
|
|
|
|
| 26 |
---
|
| 27 |
|
| 28 |
-
#
|
| 29 |
|
| 30 |
-
|
| 31 |
|
| 32 |
-
|
| 33 |
|
| 34 |
-
|
| 35 |
|
| 36 |
-
##
|
| 37 |
|
| 38 |
-
``
|
| 39 |
-
ASVspoof2019LA/
|
| 40 |
-
data/
|
| 41 |
-
test-00000-of-00009.parquet
|
| 42 |
-
test-00001-of-00009.parquet
|
| 43 |
-
...
|
| 44 |
-
test-00008-of-00009.parquet
|
| 45 |
-
protocols/
|
| 46 |
-
ASVspoof2019.LA.cm.eval.trl.txt
|
| 47 |
-
submissions/
|
| 48 |
-
README.md
|
| 49 |
-
results_template.csv
|
| 50 |
-
build_parquet.py
|
| 51 |
-
eval.yaml
|
| 52 |
-
LICENSE.txt
|
| 53 |
-
README.md
|
| 54 |
-
```
|
| 55 |
-
|
| 56 |
-
## Benchmark Task
|
| 57 |
-
|
| 58 |
-
Given an evaluation utterance from the ASVspoof 2019 Logical Access condition, predict whether it is:
|
| 59 |
-
|
| 60 |
-
- `bonafide`: genuine human speech
|
| 61 |
-
- `spoof`: synthetic or converted speech
|
| 62 |
-
|
| 63 |
-
The benchmark uses the official ASVspoof 2019 LA countermeasure evaluation protocol:
|
| 64 |
-
|
| 65 |
-
```text
|
| 66 |
-
protocols/ASVspoof2019.LA.cm.eval.trl.txt
|
| 67 |
-
```
|
| 68 |
-
|
| 69 |
-
Protocol columns:
|
| 70 |
-
|
| 71 |
-
```text
|
| 72 |
-
speaker_id utterance_id unused attack_id label
|
| 73 |
-
```
|
| 74 |
-
|
| 75 |
-
Example:
|
| 76 |
|
| 77 |
-
|
| 78 |
-
LA_0039 LA_E_2834763 - A11 spoof
|
| 79 |
-
LA_0004 LA_E_1665632 - - bonafide
|
| 80 |
-
```
|
| 81 |
-
|
| 82 |
-
Number of evaluation trials: **71,237**.
|
| 83 |
-
|
| 84 |
-
## Metrics
|
| 85 |
-
|
| 86 |
-
The leaderboard tracks **Equal Error Rate (EER %)** — lower is better.
|
| 87 |
-
|
| 88 |
-
This is the primary metric on the Hugging Face benchmark leaderboard (task `eer`). EER is computed over all 71,237 evaluation trials from the official ASVspoof 2019 LA countermeasure protocol.
|
| 89 |
-
|
| 90 |
-
When possible, also report **minimum tandem Detection Cost Function (min t-DCF)** in your paper alongside EER, using the official ASVspoof 2019 scoring implementation.
|
| 91 |
-
|
| 92 |
-
## Dataset Schema
|
| 93 |
-
|
| 94 |
-
Each row in the parquet files has the following columns:
|
| 95 |
|
| 96 |
| Column | Type | Description |
|
| 97 |
|--------|------|-------------|
|
| 98 |
-
| `
|
| 99 |
-
| `audio` | `Audio(16000)` | Audio waveform,
|
| 100 |
-
| `
|
| 101 |
-
| `
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
|
|
|
| 106 |
|
| 107 |
-
##
|
| 108 |
|
| 109 |
```python
|
| 110 |
from datasets import load_dataset
|
| 111 |
|
| 112 |
ds = load_dataset("SpeechAntiSpoofingBenchmarks/ASVspoof2019_LA", split="test")
|
| 113 |
print(ds[0])
|
| 114 |
-
# {'
|
|
|
|
| 115 |
```
|
| 116 |
|
| 117 |
-
##
|
| 118 |
|
| 119 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
|
| 121 |
-
|
| 122 |
|
| 123 |
-
|
| 124 |
-
-
|
| 125 |
-
id: SpeechAntiSpoofingBenchmarks/ASVspoof2019_LA
|
| 126 |
-
task_id: eer
|
| 127 |
-
value: 0.83
|
| 128 |
-
date: "2026-05-19"
|
| 129 |
-
source:
|
| 130 |
-
url: https://github.com/clovaai/aasist
|
| 131 |
-
name: AASIST reference implementation
|
| 132 |
-
notes: "EER (%) on official LA eval protocol"
|
| 133 |
-
```
|
| 134 |
|
| 135 |
-
|
| 136 |
-
- `dataset.id` — must be `SpeechAntiSpoofingBenchmarks/ASVspoof2019_LA`
|
| 137 |
-
- `task_id` — must be `eer`
|
| 138 |
-
- `value` — EER in percent (e.g. `0.83` means 0.83% EER)
|
| 139 |
-
- `revision` — optional, pins the dataset snapshot for reproducibility
|
| 140 |
|
| 141 |
-
|
| 142 |
|
| 143 |
-
|
| 144 |
|
| 145 |
-
|
| 146 |
|
| 147 |
-
|
| 148 |
|
| 149 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 150 |
|
| 151 |
-
|
| 152 |
|
| 153 |
```bibtex
|
| 154 |
@article{wang2020asvspoof,
|
| 155 |
title={ASVspoof 2019: A large-scale public database of synthesized, converted and replayed speech},
|
| 156 |
author={Wang, Xin and Yamagishi, Junichi and Todisco, Massimiliano and Delgado, Hector and Nautsch, Andreas and Evans, Nicholas and Sahidullah, Md and Vestman, Ville and Kinnunen, Tomi and Lee, Kong Aik and others},
|
| 157 |
-
journal={Computer Speech & Language},
|
| 158 |
volume={64},
|
| 159 |
pages={101114},
|
| 160 |
year={2020},
|
|
@@ -162,18 +109,6 @@ If you use this benchmark, cite the original ASVspoof 2019 database paper:
|
|
| 162 |
}
|
| 163 |
```
|
| 164 |
|
| 165 |
-
|
| 166 |
-
@misc{wang2020asvspoof2019largescalepublic,
|
| 167 |
-
title={ASVspoof 2019: A large-scale public database of synthesized, converted and replayed speech},
|
| 168 |
-
author={Xin Wang and Junichi Yamagishi and Massimiliano Todisco and Hector Delgado and Andreas Nautsch and Nicholas Evans and Md Sahidullah and Ville Vestman and Tomi Kinnunen and Kong Aik Lee and Lauri Juvela and Paavo Alku and Yu-Huai Peng and Hsin-Te Hwang and Yu Tsao and Hsin-Min Wang and Sebastien Le Maguer and Markus Becker and Fergus Henderson and Rob Clark and Yu Zhang and Quan Wang and Ye Jia and Kai Onuma and Koji Mushika and Takashi Kaneda and Yuan Jiang and Li-Juan Liu and Yi-Chiao Wu and Wen-Chin Huang and Tomoki Toda and Kou Tanaka and Hirokazu Kameoka and Ingmar Steiner and Driss Matrouf and Jean-Francois Bonastre and Avashna Govender and Srikanth Ronanki and Jing-Xuan Zhang and Zhen-Hua Ling},
|
| 169 |
-
year={2020},
|
| 170 |
-
eprint={1911.01601},
|
| 171 |
-
archivePrefix={arXiv},
|
| 172 |
-
primaryClass={eess.AS},
|
| 173 |
-
url={https://arxiv.org/abs/1911.01601},
|
| 174 |
-
}
|
| 175 |
-
```
|
| 176 |
-
|
| 177 |
-
## License
|
| 178 |
|
| 179 |
-
|
|
|
|
| 1 |
---
|
| 2 |
license: other
|
| 3 |
language:
|
| 4 |
+
- en
|
| 5 |
+
pretty_name: ASVspoof 2019 LA
|
| 6 |
task_categories:
|
| 7 |
+
- audio-classification
|
|
|
|
| 8 |
size_categories:
|
| 9 |
+
- 10K<n<100K
|
| 10 |
configs:
|
| 11 |
+
- config_name: default
|
| 12 |
+
data_files:
|
| 13 |
+
- split: test
|
| 14 |
+
path: "data/test-*.parquet"
|
| 15 |
tags:
|
| 16 |
+
- anti-spoofing
|
| 17 |
+
- audio-deepfake-detection
|
| 18 |
+
- speech
|
| 19 |
+
- benchmark
|
| 20 |
+
- arena-ready
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
paperswithcode_id: asvspoof-2019
|
| 22 |
+
arxiv:
|
| 23 |
+
- "1911.01601"
|
| 24 |
---
|
| 25 |
|
| 26 |
+
# ASVspoof 2019 LA
|
| 27 |
|
| 28 |
+
Benchmark-ready packaging of the **Logical Access (LA) evaluation partition** from ASVspoof 2019 for speech anti-spoofing and synthetic voice detection.
|
| 29 |
|
| 30 |
+
## Overview
|
| 31 |
|
| 32 |
+
This dataset contains the LA evaluation subset of the ASVspoof 2019 challenge. The task is binary classification: **bonafide** (genuine human speech) vs. **spoof** (synthetic or converted speech). The original dataset is available at https://www.asvspoof.org/index2019.html.
|
| 33 |
|
| 34 |
+
## License & redistribution
|
| 35 |
|
| 36 |
+
This dataset is redistributed under the **Open Data Commons Attribution License (ODC-By)**. See `LICENSE.txt` for the full text. The original dataset was not modified.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
+
## Schema
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
|
| 40 |
| Column | Type | Description |
|
| 41 |
|--------|------|-------------|
|
| 42 |
+
| `path` | `string` | Stable archive-relative path (e.g. `LA_E_2834763.flac`), unique within dataset |
|
| 43 |
+
| `audio` | `Audio(16000)` | Audio waveform, 16 kHz mono |
|
| 44 |
+
| `label` | `ClassLabel` | `"bonafide"` (index 0) or `"spoof"` (index 1) |
|
| 45 |
+
| `notes` | `string` | JSON with `utterance_id`, `speaker_id`, `subset` |
|
| 46 |
+
|
| 47 |
+
`notes` example:
|
| 48 |
+
```json
|
| 49 |
+
{"utterance_id": "LA_E_2834763", "speaker_id": "LA_0039", "subset": "eval"}
|
| 50 |
+
```
|
| 51 |
|
| 52 |
+
## Quick Start
|
| 53 |
|
| 54 |
```python
|
| 55 |
from datasets import load_dataset
|
| 56 |
|
| 57 |
ds = load_dataset("SpeechAntiSpoofingBenchmarks/ASVspoof2019_LA", split="test")
|
| 58 |
print(ds[0])
|
| 59 |
+
# {'path': 'LA_E_2834763.flac', 'audio': {'array': ..., 'sampling_rate': 16000},
|
| 60 |
+
# 'label': 1, 'notes': '{"utterance_id": "LA_E_2834763", ...}'}
|
| 61 |
```
|
| 62 |
|
| 63 |
+
## Stats
|
| 64 |
|
| 65 |
+
| Stat | Value |
|
| 66 |
+
|------|-------|
|
| 67 |
+
| Total trials | 71,237 |
|
| 68 |
+
| Bonafide | 7,355 |
|
| 69 |
+
| Spoof | 63,882 |
|
| 70 |
|
| 71 |
+
## Source provenance
|
| 72 |
|
| 73 |
+
- Original dataset: https://www.asvspoof.org/index2019.html
|
| 74 |
+
- Evaluation protocol: `protocols/ASVspoof2019.LA.cm.eval.trl.txt`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 75 |
|
| 76 |
+
## Evaluation
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
|
| 78 |
+
For evaluation instructions and submission format, see [`submissions/README.md`](submissions/README.md).
|
| 79 |
|
| 80 |
+
## Citation
|
| 81 |
|
| 82 |
+
**Original paper**: https://arxiv.org/abs/1911.01601
|
| 83 |
|
| 84 |
+
arXiv version:
|
| 85 |
|
| 86 |
+
```bibtex
|
| 87 |
+
@misc{wang2020asvspoof2019largescalepublic,
|
| 88 |
+
title={ASVspoof 2019: A large-scale public database of synthesized, converted and replayed speech},
|
| 89 |
+
author={Xin Wang and Junichi Yamagishi and Massimiliano Todisco and Hector Delgado and Andreas Nautsch and Nicholas Evans and Md Sahidullah and Ville Vestman and Tomi Kinnunen and Kong Aik Lee and Lauri Juvela and Paavo Alku and Yu-Huai Peng and Hsin-Te Hwang and Yu Tsao and Hsin-Min Wang and Sebastien Le Maguer and Markus Becker and Fergus Henderson and Rob Clark and Yu Zhang and Quan Wang and Ye Jia and Kai Onuma and Koji Mushika and Takashi Kaneda and Yuan Jiang and Li-Juan Liu and Yi-Chiao Wu and Wen-Chin Huang and Tomoki Toda and Kou Tanaka and Hirokazu Kameoka and Ingmar Steiner and Driss Matrouf and Jean-Francois Bonastre and Avashna Govender and Srikanth Ronanki and Jing-Xuan Zhang and Zhen-Hua Ling},
|
| 90 |
+
year={2020},
|
| 91 |
+
eprint={1911.01601},
|
| 92 |
+
archivePrefix={arXiv},
|
| 93 |
+
primaryClass={eess.AS},
|
| 94 |
+
url={https://arxiv.org/abs/1911.01601},
|
| 95 |
+
}
|
| 96 |
+
```
|
| 97 |
|
| 98 |
+
Peer-reviewed publication (Computer Speech & Language, 2020):
|
| 99 |
|
| 100 |
```bibtex
|
| 101 |
@article{wang2020asvspoof,
|
| 102 |
title={ASVspoof 2019: A large-scale public database of synthesized, converted and replayed speech},
|
| 103 |
author={Wang, Xin and Yamagishi, Junichi and Todisco, Massimiliano and Delgado, Hector and Nautsch, Andreas and Evans, Nicholas and Sahidullah, Md and Vestman, Ville and Kinnunen, Tomi and Lee, Kong Aik and others},
|
| 104 |
+
journal={Computer Speech \& Language},
|
| 105 |
volume={64},
|
| 106 |
pages={101114},
|
| 107 |
year={2020},
|
|
|
|
| 109 |
}
|
| 110 |
```
|
| 111 |
|
| 112 |
+
## Maintainer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 113 |
|
| 114 |
+
Contact: k.n.borodin@mtici.ru
|