Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -38,6 +38,44 @@ language:
|
|
| 38 |
- zh
|
| 39 |
---
|
| 40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
## License
|
| 42 |
|
| 43 |
**This dataset contains data from multiple sources, each with its own license.**
|
|
@@ -47,4 +85,7 @@ Users must comply with the license of each individual sub-dataset they use.
|
|
| 47 |
|---|---|---|
|
| 48 |
| CommonVoice | CC0-1.0 | Yes |
|
| 49 |
| ParlaSpeech-HR | [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) | Yes |
|
| 50 |
-
| Dolly-Audio | [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) | No |
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
- zh
|
| 39 |
---
|
| 40 |
|
| 41 |
+
<h1 align="center">X-Voice Multilingual Test Set</h1>
|
| 42 |
+
<h3 align="center">High-Fidelity Test Set for Multilingual Text-to-Speech across 30 Languages</h3>
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
This test set is built as part of the research: **X-Voice: One Speaker, 30+ Languages with Zero-Shot Voice Cloning**, serving as the evaluation benchmark for our model.
|
| 46 |
+
|
| 47 |
+
## Dataset Summary
|
| 48 |
+
- **30 languages**
|
| 49 |
+
- **European**: bg (Bulgarian), cs (Czech), da (Danish), de (German), el (Greek), en (English), es (Spanish), et (Estonian), fi (Finnish), fr (French), hr (Croatian), hu (Hungarian), it (Italian), lt (Lithuanian), lv (Latvian), mt (Maltese), nl (Dutch), pl (Polish), pt (Portuguese), ro (Romanian), ru (Russian), sk (Slovak), sl (Slovenian), sv (Swedish).
|
| 50 |
+
- **Asian**: id (Indonesian), ja (Japanese), ko (Korean), th (Thai), vi (Vietnamese), zh (Chinese).
|
| 51 |
+
- **500 utterances per language** from **over 100 speakers** (15,000 utterances in total).
|
| 52 |
+
- Audio format: **24kHz mono WAV**.
|
| 53 |
+
- Each sample includes human-recorded **ground-truth audio**.
|
| 54 |
+
- Primarily constructed from **Common Voice**. Vietnamese data from Dolly-Audio, Korean from Emilia, Croatian from ParlaSpeech-HR.
|
| 55 |
+
|
| 56 |
+
## Curation Pipeline
|
| 57 |
+
1. Temporal and speaking rate filtering
|
| 58 |
+
2. Silero VAD for speech segmentation and silence trimming
|
| 59 |
+
3. ECAPA-TDNN speaker verification (cosine similarity ≥ 0.6) to ensure consistent speakers between prompt and reference audio
|
| 60 |
+
|
| 61 |
+
## Data Structure
|
| 62 |
+
```
|
| 63 |
+
X-Voice-TestSet/zero_shot
|
| 64 |
+
├── bg/
|
| 65 |
+
│ ├── ground_truth/ # 📂 Folder for human-recorded ground-truth audio
|
| 66 |
+
│ ├── waveform/ # 📂 Folder for prompt reference audio
|
| 67 |
+
│ ├── gt_wav.scp # 📄 Index file for ground-truth audio (utt_id /path/to/gt.wav)
|
| 68 |
+
│ ├── prompt_text # 📄 Prompt text file (utt_id prompt_content)
|
| 69 |
+
│ ├── prompt_wav.scp # 📄 Index file for prompt audio (utt_id /path/to/prompt.wav)
|
| 70 |
+
│ └── text # 📄 Target text file (utt_id target_content)
|
| 71 |
+
├── cs/
|
| 72 |
+
│ └── ... # Same structure as bg/
|
| 73 |
+
├── da/
|
| 74 |
+
│ └── ...
|
| 75 |
+
...
|
| 76 |
+
└── zh/
|
| 77 |
+
└── ... # Same structure as bg/
|
| 78 |
+
```
|
| 79 |
## License
|
| 80 |
|
| 81 |
**This dataset contains data from multiple sources, each with its own license.**
|
|
|
|
| 85 |
|---|---|---|
|
| 86 |
| CommonVoice | CC0-1.0 | Yes |
|
| 87 |
| ParlaSpeech-HR | [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) | Yes |
|
| 88 |
+
| Dolly-Audio | [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) | No |
|
| 89 |
+
|
| 90 |
+
## Citation
|
| 91 |
+
If you use this benchmark, please cite our work.
|