ASVspoof2021_DF
收藏资源简介:
ASVspoof 2021 DF数据集是ASVspoof 2021挑战赛的DeepFake评估子集,专门用于语音反欺骗和深度伪造语音检测的基准测试。该数据集的核心任务是二元分类:区分真实的人类语音(bonafide)与合成、转换或经过其他方式操纵的伪造语音(spoof)。数据集共包含611,829个语音样本,其中真实语音22,617个,伪造语音589,212个。所有音频文件均经过标准化处理,转换为16kHz单声道FLAC格式,确保在各种音频解码器中的兼容性,同时保持了原始PCM样本的精确性。数据集包含四个主要字段:path(稳定的存档相对路径)、audio(16kHz单声道音频波形)、label(分类标签,0表示真实,1表示伪造)以及notes(包含utterance_id、speaker_id、subset、codec、source、attack_id、vocoder等元数据的JSON字符串)。该数据集适用于语音反欺骗、音频深度伪造检测、说话人验证安全等研究领域,并提供了标准化的评估协议。
The ASVspoof 2021 DF dataset is the DeepFake evaluation subset of the ASVspoof 2021 challenge, specifically designed for benchmarking speech anti-spoofing and deepfake voice detection. Its core task is binary classification: distinguishing real human speech (bonafide) from synthetic, converted, or otherwise manipulated fake speech (spoof). The dataset contains a total of 611,829 speech samples, including 22,617 real speech samples and 589,212 fake speech samples. All audio files are standardized and converted to 16kHz mono FLAC format, ensuring compatibility across various audio decoders while preserving the accuracy of the original PCM samples. The dataset includes four main fields: path (stable archive relative path), audio (16kHz mono audio waveform), label (classification label, 0 for real, 1 for fake), and notes (JSON string containing metadata such as utterance_id, speaker_id, subset, codec, source, attack_id, vocoder). This dataset is suitable for research areas such as speech anti-spoofing, audio deepfake detection, and speaker verification security, and provides standardized evaluation protocols.
数据集名称:ASVspoof 2021 DF
任务类型
- 音频分类:二分类任务,区分 真实语音(bonafide) 与 伪造语音(spoof)(包括合成、转换或篡改的语音)。
数据集规模
- 总样本数:611,829 条
- 真实语音(bonafide):22,617 条
- 伪造语音(spoof):589,212 条
数据划分
- 仅包含 测试集(test) 划分,数据文件位于
data/test-*.parquet。
数据模式(Schema)
| 列名 | 类型 | 描述 |
|---|---|---|
path |
string |
数据集内唯一的相对路径(如 DF_E_2000011.flac) |
audio |
Audio(16000) |
16 kHz 单声道音频波形 |
label |
ClassLabel |
类别标签:"bonafide"(索引0)或 "spoof"(索引1) |
notes |
string |
JSON格式的元数据,包含 utterance_id, speaker_id, subset, codec, source, attack_id, vocoder |
数据来源与处理
- 原始数据集来自 ASVspoof 2021 挑战赛。
- 音频已统一转码为 16 kHz 单声道 FLAC,PCM样本在重编码后保持位精确(无损),采样率不变。
- 标签和评估协议未做修改。
许可证与分发
- 采用 Open Data Commons Open Database License (ODbL) 许可证重新分发。
快速加载示例(Python)
python from datasets import load_dataset ds = load_dataset("SpeechAntiSpoofingBenchmarks/ASVspoof2021_DF", split="test") print(ds[0])
{path: DF_E_2000011.flac, audio: {array: ..., sampling_rate: 16000},
label: 1, notes: {"utterance_id": "DF_E_2000011", ...}}
评估与提交
- 评估说明和提交格式请参考
submissions/README.md文件。
引用
- 原始论文:arXiv:2109.00537
- 同行评审出版:
@inproceedings{yamagishi21_asvspoof, ...}
维护者
- 联系方式:k.n.borodin@mtuci.ru




