Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
4 |
This repository introduces: π *ShiftySpeech*: A Large-Scale Synthetic Speech Dataset with Distribution Shifts
|
5 |
|
@@ -15,8 +20,24 @@ This repository introduces: π *ShiftySpeech*: A Large-Scale Synthetic Speech
|
|
15 |
|
16 |
## π‘ Why We Built This Dataset
|
17 |
> Driven by advances in self-supervised learning for speech, state-of-the-art synthetic speech detectors have achieved low error rates on popular benchmarks such as ASVspoof. However, prior benchmarks do not address the wide range of real-world variability in speech. Are reported error rates realistic in real-world conditions? To assess detector failure modes and robustness under controlled distribution shifts, we introduce **ShiftySpeech**, a benchmark with more than 3000 hours of synthetic speech from 7 domains, 6 TTS systems, 12 vocoders, and 3 languages.
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
If you find this dataset useful, please cite our work:
|
22 |
```bibtex
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
- zh
|
6 |
+
- ja
|
7 |
+
pretty_name: S
|
8 |
---
|
9 |
This repository introduces: π *ShiftySpeech*: A Large-Scale Synthetic Speech Dataset with Distribution Shifts
|
10 |
|
|
|
20 |
|
21 |
## π‘ Why We Built This Dataset
|
22 |
> Driven by advances in self-supervised learning for speech, state-of-the-art synthetic speech detectors have achieved low error rates on popular benchmarks such as ASVspoof. However, prior benchmarks do not address the wide range of real-world variability in speech. Are reported error rates realistic in real-world conditions? To assess detector failure modes and robustness under controlled distribution shifts, we introduce **ShiftySpeech**, a benchmark with more than 3000 hours of synthetic speech from 7 domains, 6 TTS systems, 12 vocoders, and 3 languages.
|
23 |
+
|
24 |
+
## βοΈ Usage
|
25 |
+
|
26 |
+
Ensure that you have soundfile or librosa installed for proper audio decoding:
|
27 |
+
|
28 |
+
```bash
|
29 |
+
pip install soundfile librosa
|
30 |
+
```
|
31 |
+
##### π Example: Loading the AISHELL Dataset Vocoded with APNet2
|
32 |
+
|
33 |
+
```bash
|
34 |
+
from datasets import load_dataset
|
35 |
+
|
36 |
+
dataset = load_dataset("ash56/ShiftySpeech", data_files={"data": f"Vocoders/apnet2/apnet2_aishell_flac.tar.gz"})["data"]
|
37 |
+
```
|
38 |
+
**β οΈ Note:** It is recommended to load data from a specific folder to avoid unnecessary memory usage.
|
39 |
+
|
40 |
+
### **Citation**
|
41 |
|
42 |
If you find this dataset useful, please cite our work:
|
43 |
```bibtex
|