Mike Wang Claude commited on
Commit
87eef4a
·
1 Parent(s): a7902ea

Update dataset card with title, description, and structure

Browse files

- Add proper title for Hugging Face dataset
- Include dataset description with project overview
- Add detailed dataset structure showing corpus collections
- Include GitHub repository reference

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

Files changed (1) hide show
  1. README.md +50 -1
README.md CHANGED
@@ -1,4 +1,5 @@
1
  ---
 
2
  configs:
3
  - config_name: mls-tts-bark
4
  data_files:
@@ -121,4 +122,52 @@ configs:
121
  - split: test
122
  path: mls/vocoders/parallel_wavegan/test/*.tar
123
  viewer: true
124
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: "Dataset for AUDETER: A Large-scale Dataset for Deepfake Audio Detection in Open Worlds"
3
  configs:
4
  - config_name: mls-tts-bark
5
  data_files:
 
122
  - split: test
123
  path: mls/vocoders/parallel_wavegan/test/*.tar
124
  viewer: true
125
+ ---
126
+
127
+ # Dataset for AUDETER: A Large-scale Dataset for Deepfake Audio Detection in Open Worlds
128
+
129
+ ## Dataset Description
130
+
131
+ We introduce AUDETER (AUdio DEepfake TEst Range), a large-scale, highly diverse deepfake audio dataset for comprehensive evaluation and robust development of generalised models for deepfake audio detection. It consists of over 4,500 hours of synthetic audio generated by 11 recent TTS models and 10 vocoders with a broad range of TTS/vocoder patterns, totalling 3 million audio clips.
132
+
133
+ Please refer to our [GitHub repository](https://github.com/mike-qz-wang/AUDETER) for more information.
134
+
135
+ ## Dataset Structure
136
+
137
+ The dataset is organized into four main corpus collections:
138
+
139
+ ```
140
+ ├── common_voice/ # Common Voice corpus
141
+ │ ├── tts/ # TTS models
142
+ │ │ ├── bark/
143
+ │ │ ├── chattts/
144
+ │ │ ├── cosyvoice/
145
+ │ │ ├── f5_tts/
146
+ │ │ ├── fish_speech/
147
+ │ │ ├── openvoice/
148
+ │ │ ├── sparktts/
149
+ │ │ ├── vits/
150
+ │ │ ├── xtts/
151
+ │ │ ├── yourtts/
152
+ │ │ └── zonos/
153
+ │ └── vocoders/ # Vocoders
154
+ │ ├── bigvgan/
155
+ │ ├── bigvsan/
156
+ │ ├── full_band_melgan/
157
+ │ ├── hifigan/
158
+ │ ├── melgan/
159
+ │ ├── multi_band_melgan/
160
+ │ ├── parallel_wavegan/
161
+ │ ├── style_melgan/
162
+ │ ├── univnet/
163
+ │ └── vocos/
164
+ ├── in-the-wild/ # In-the-wild corpus
165
+ │ ├── tts/ # TTS models
166
+ │ └── vocoders/ # Vocoders
167
+ ├── mls/ # Multilingual LibriSpeech corpus
168
+ │ ├── tts/ # TTS models
169
+ │ └── vocoders/ # Vocoders
170
+ └── peoples_speech/ # People's Speech corpus
171
+ ├── tts/ # TTS models
172
+ └── vocoders/ # Vocoders
173
+ ```