Datasets:
The dataset viewer is not available for this split.
Error code: UnexpectedError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Dataset Card for the ViSpeech dataset
Dataset Summary
The ViSpeech Dataset is a collection of unscripted audio recordings designed for the classification of gender and Vietnamese dialects. The dataset comprises 10,686 mp3 files, totaling slightly over 14 hours of speech data from 449 speakers representing both genders across the three primary Vietnamese dialects: Northern, Central, and Southern. It is divided into three subsets: a training set with clean recordings and two test sets—one with clean recordings and the other with ambient noise. Notably, the speakers in the training set are independent of those in the test sets. The dataset is designed to provide a diverse and comprehensive resource for audio classification research.
Dataset Details
Dataset Information
Configurations: The dataset contains the following configurations:
train
: Training data with gender and dialect information.validation
: Validation data with gender and dialect information.clean_test
: Clean test data for evaluation.noise_test
: Noisy test data for evaluation.
Features:
audio
: Audio data with a sampling rate of 16,000 Hz.audio_path
: File path to each audio file.audio_name
: The name of the audio file.dialect
: The dialect of the speaker.gender
: The gender of the speaker.speaker
: The speaker's identifier.
Splits:
- Train: Contains the training data files.
- Validation: Contains the validation data files.
- Clean Test: Contains the clean test data files.
- Noise Test: Contains the noisy test data files.
Licensing
The dataset is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 (cc-by-nc-sa-4.0).
Example Usage
You can load the dataset in Python using the datasets
library:
from datasets import load_dataset
ds = load_dataset("{dataset_name}", "train")
print(ds)
gives:
DatasetDict({
train: Dataset({
features: ['audio_name', 'dialect', 'gender', 'speakers'],
num_rows: 6941
})
})
- Downloads last month
- 15