Datasets:
speechocean762
speechocean762 is a speech dataset of native Mandarin speakers (50% adult, 50% children) speaking English. It contains phonemic annotations using the sounds supported by ARPABet. It was developed by Junbo Zhang et al. Read more on their official github, Hugging Face dataset, and paper.
This Processed Version
We have processed the dataset into an easily consumable Hugging Face dataset using this data processing script. This maps the phoneme annotations to IPA as supported by libraries like ipapy and panphon. We filter out samples with uncertain sound labels, unknown labels, and heavy accents for use in Speech-to-IPA modeling as opposed to pronunciation scoring which the original dataset should be used for.
- The train set has 2481 samples (around 170 minutes of speech).
- The test set has 2479 samples (around 160 minutes of speech).
All audio has been converted to float32 in the -1 to 1 range at 16 kHz sampling rate.
Usage
- Request access to this dataset on the Hugging Face website. You will be automatically approved upon accepting the terms.
pip install datasets
- Login to Hugging Face using
huggingface-cli login
with a token that has gated read access. - Use the dataset in your scripts:
from datasets import load_dataset
dataset = load_dataset("KoelLabs/SpeechOcean")
train_ds = dataset['train']
test_ds = dataset['test']
sample = train_ds[0]
print(sample)
License
The original dataset is released under the Apache 2.0 license, a summary of the license can be found here, and the full license can be found here. This processed dataset follows the same license.
- Downloads last month
- 44