Dataset Viewer
The dataset viewer is taking too long to fetch the data. Try to refresh this page.
Server-side error
Error code:   ClientConnectionError

X-Voice Training Dataset

Overview

The X-Voice training dataset is a large-scale multilingual speech corpus curated for high-performance speech models. It provides a robust foundation for cross-lingual phonetic and prosodic modeling.

Also the train set of X-Voice Model.

Core Statistics

  • Total Speech Duration: 420K hours
  • 30 languages
    • 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).

    • Asian: id (Indonesian), ja (Japanese), ko (Korean), th (Thai), vi (Vietnamese), zh (Chinese).

      Duration Statistics of Different Languages

Data Sources

We aggregate high-quality open-source speech datasets across languages:

  • Chinese & English: Emilia

  • Vietnamese, Thai, Indonesian: GigaSpeech 2

  • Korean: KoreaSpeech

  • Japanese: ReazonSpeech

  • Russian: LEMAS

  • European Languages (Spanish, Italian, French, etc.): Multilingual Librispeech (MLS), Granary

    Source Format Sample Rate
    Emilia mp3 24kHz
    Gigaspeech2 flac 16kHz
    KoreaSpeech flac 16kHz
    ReazonSpeech flac 16kHz
    LEMAS mp3 16kHz
    MLS flac 16kHz
    Granary ogg 16kHz

    Format Note:
    For datasets originally distributed in FLAC format, we retain the lossless FLAC files in their original state, without recompressing them into lossy formats like MP3 or OGG.

Processing Pipeline

A rigorous multi-stage filtering pipeline is applied to ensure data quality:

  1. Duration & Speaking Rate Filtering: Remove segments <0.5s or >30s; filter by language-specific speaking rate thresholds.
  2. Language Validation: Verify text language consistency using langdetect.
  3. Deduplication: Remove duplicate texts appearing more than 20 times to avoid overfitting.
  4. Acoustic Quality Control: Filter low-quality audio via DNSMOS speech quality assessment.

Highlights

  • Diverse linguistic and temporal distribution
  • High-quality cleaned speech-text training pairs
  • Optimized for multilingual speech modeling and generalization

Data Structure

X-Voice-Dataset-Train/
β”œβ”€β”€ tars/                     # Speech Data
β”‚   β”œβ”€β”€ bg/
β”‚   β”‚   β”œβ”€β”€ bg_vox_part001.tar
β”‚   β”‚   β”œβ”€β”€ bg_vox_part002.tar
β”‚   β”‚   └── ...
|   β”œβ”€β”€ ...
β”‚   └── zh/
β”‚       β”œβ”€β”€ zh_emilia_part001.tar
β”‚       β”œβ”€β”€ zh_emilia_part002.tar
β”‚       └── ...
β”‚
β”œβ”€β”€ csvs/                     # Tramscript Data
β”‚   β”œβ”€β”€ metadata_bg_voxpopuli.csv
β”‚   β”œβ”€β”€ ...
β”‚   └── metadata_zh_emilia.csv
β”‚
└── csvs_stage2/              # Transcript Data for Stage 2 Finetuning
    β”œβ”€β”€ metadata_bg_voxpopuli.csv
    β”œβ”€β”€ ...
    └── metadata_zh_emilia.csv

Use the Dataset

CLI Download

from huggingface_hub import snapshot_download
snapshot_download(
    repo_id="XRXRX/X-Voice-Dataset-Train",
    # allow_patterns=["data/tars/bg/*.tar"], # you can download a specific package.  
    local_dir=[local path you want to place the dataset],
    repo_type="dataset",
    local_dir_use_symlinks=False
)

Unzip

cd [local path you want to place the dataset]

for lang in data/tars/*/; do
    lang_name=$(basename "$lang")
    mkdir -p "wavs/$lang_name"
    tar xf "$lang"*.tar -C "wavs/$lang_name" --strip-components=1 --skip-old-files
done

Then you can refer to X-Voice Training for subsequent training process.

Note:

The data from Gigaspeech 2 (including Thai, Indonesian, and Vietnamese) is currently not included in this repo due to storage constraints and license restrictions. You can download them from the official source or refer to our repo in ModelScope.

License

This dataset contains data from multiple sources, each with its own license. Users must comply with the license of each individual sub-dataset they use.

Dataset License Commercial Use
Multilingual LibriSpeech CC BY 4.0 Yes
Emilia CC BY 4.0 Yes
LEMAS CC BY 4.0 Yes
VoxPopuli CC-0 + European Parliament's legal notice for the raw data Yes
Granary (MOSEL Part) CC BY 4.0 Yes
GigaSpeech 2 License agreement required See terms
Reazon Speech CDLA-Sharing-1.0 + only for the purpose of Japanese Copyright Act Article 30-4. See terms
KoreaSpeech Refer to the repo
Downloads last month
32,944

Models trained or fine-tuned on XRXRX/X-Voice-Dataset-Train