You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

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.

Note: we have another version of this dataset. The difference is that in this filtered version, we have removed samples where a different set of 2 annotators disagreed with the labels in the original.

  • The train set has 1120 samples (around 72 minutes of speech).
  • The test set has 1123 samples (around 68 minutes of speech).

All audio has been converted to float32 in the -1 to 1 range at 16 kHz sampling rate.

Usage

  1. Request access to this dataset on the Hugging Face website. You will be automatically approved upon accepting the terms.
  2. pip install datasets
  3. Login to Hugging Face using huggingface-cli login with a token that has gated read access.
  4. Use the dataset in your scripts:
from datasets import load_dataset

dataset = load_dataset("KoelLabs/SpeechOceanNoTH")
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
78

Models trained or fine-tuned on KoelLabs/SpeechOceanNoTH

Collection including KoelLabs/SpeechOceanNoTH