yakhyo/mozilla-common-voice-uzbek
π£οΈ Mozilla Common Voice (Uzbek) β Cleaned & Normalized This dataset is a refined version of mozilla-foundation/common_voice_17_0, containing only Uzbek language voice recordings, and enriched with preprocessing steps for better usability in training ASR models. π Dataset Overview This version focuses exclusively on Uzbek audio samples and includes the following modifications: π― Filtered to include only Uzbek examples. β¨ Normalized text field added under theβ¦ See the full description on the dataset page: https://huggingface.co/datasets/yakhyo/mozilla-common-voice-uzbek.
π£οΈ Mozilla Common Voice (Uzbek) β Cleaned & Normalized
This dataset is a refined version of `mozilla-foundation/common_voice_17_0`, containing only Uzbek language voice recordings, and enriched with preprocessing steps for better usability in training ASR models.
π Dataset Overview
This version focuses exclusively on Uzbek audio samples and includes the following modifications:
- π― Filtered to include only Uzbek examples.
- β¨ Normalized text field added under the key
text. - β Aligned audio format and sampling rate to standard expectations (16kHz, mono).
π οΈ Modifications Applied
The original sentence field was normalized to remove inconsistencies in apostrophe usage. A new text column was added with normalized transcription:
def normalize_text(batch):
batch["text"] = batch["sentence"].replace("β", "'").replace("β", "'").replace("`", "'")
return batchπ¦ Usage
from datasets import load_dataset
dataset = load_dataset("yakhyo/mozilla-common-voice-uzbek")
# Access normalized text
print(dataset["train"][0]["text"])π License
This dataset inherits the Mozilla Common Voice license (CC-0 1.0).
π Acknowledgements
- Original dataset by Mozilla Foundation
- Filtered and modified by Yakhyokhuja Valikhujaev hf github
