mueller91 commited on
Commit
9db4077
·
verified ·
1 Parent(s): d9925d1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +76 -3
README.md CHANGED
@@ -1,3 +1,76 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: null
3
+ license: cc-by-sa-4.0
4
+ task_categories:
5
+ - audio-classification
6
+ language:
7
+ - en
8
+ modalities:
9
+ - audio
10
+ tags:
11
+ - audio
12
+ - deepfake
13
+ - detection
14
+ - in-the-wild
15
+ - deepfake-detection
16
+ - audio-deepfake-detection
17
+ - antispoofing
18
+ pretty_name: In The Wild
19
+ size_categories:
20
+ - 10K<n<100K
21
+ ---
22
+
23
+ # In-the-Wild: A Deepfake Detection Dataset
24
+
25
+ Welcome to **In-the-Wild**, a dataset for *real-world audio deepfake detection*.
26
+ It accompanies the paper:
27
+
28
+ > **Does Audio Deepfake Detection Generalize?**
29
+ > Nicolas M. Müller, Pavel Czempin, Franziska Dieckmann, Adam Froghyar, and Konstantin Böttinger
30
+ > Fraunhofer AISEC, Technical University of Munich, why do birds GmbH
31
+ > [arXiv:2203.16263](https://arxiv.org/abs/2203.16263)
32
+
33
+ ---
34
+
35
+ ## Dataset Summary
36
+
37
+ The **In-the-Wild** dataset contains real and synthetic speech recordings of **58 celebrities and politicians**, collected from publicly available media such as interviews, podcasts, and online videos.
38
+
39
+ It provides a realistic benchmark for testing how well *audio deepfake detection models generalize* beyond laboratory data such as ASVspoof.
40
+
41
+ - **Task:** Audio Classification (Deepfake / Genuine)
42
+ - **Languages:** English
43
+ - **Modality:** Audio
44
+ - **Size:** 37.9 hours total
45
+ - 17.2 hours fake
46
+ - 20.7 hours real
47
+
48
+ ---
49
+
50
+ ## Download
51
+
52
+ You can download the full dataset as a single ZIP file directly from this repository or via the Hugging Face `datasets` library.
53
+
54
+ ### Option 1: With the `datasets` library
55
+
56
+ ```python
57
+ from datasets import load_dataset
58
+
59
+ ds = load_dataset("mueller91/In-The-Wild")
60
+ ```
61
+ ### Option 2: wget
62
+ ```
63
+ wget https://huggingface.co/datasets/mueller91/In-The-Wild/resolve/main/release_in_the_wild.zip
64
+ unzip release_in_the_wild.zip
65
+ ```
66
+
67
+ ## Citation
68
+ ```
69
+ @article{muller2022does,
70
+ title={Does audio deepfake detection generalize?},
71
+ author={M{\"u}ller, Nicolas M and Czempin, Pavel and Dieckmann, Franziska and Froghyar, Adam and B{\"o}ttinger, Konstantin},
72
+ journal={arXiv preprint arXiv:2203.16263},
73
+ year={2022}
74
+ }
75
+ ```
76
+