Datasets:
tsv unknown | __key__ stringlengths 32 59 | __url__ stringclasses 1 value |
|---|---|---|
"Y2xpcAlkdXJhdGlvblttc10KY29tbW9uX3ZvaWNlX21uXzQwNTgzNTM3Lm1wMwk0MTQwCmNvbW1vbl92b2ljZV9tbl80MDQ2Njc(...TRUNCATED) | cv-corpus-24.0-2025-12-05/mn/clip_durations | "/tmp/hf-datasets-cache/medium/datasets/59625365119621-config-parquet-and-info-onlysainaa-common-voi(...TRUNCATED) |
"Y2xpZW50X2lkCXBhdGgJc2VudGVuY2VfaWQJc2VudGVuY2UJc2VudGVuY2VfZG9tYWluCXVwX3ZvdGVzCWRvd25fdm90ZXMJYWd(...TRUNCATED) | cv-corpus-24.0-2025-12-05/mn/dev | "/tmp/hf-datasets-cache/medium/datasets/59625365119621-config-parquet-and-info-onlysainaa-common-voi(...TRUNCATED) |
"Y2xpZW50X2lkCXBhdGgJc2VudGVuY2VfaWQJc2VudGVuY2UJc2VudGVuY2VfZG9tYWluCXVwX3ZvdGVzCWRvd25fdm90ZXMJYWd(...TRUNCATED) | cv-corpus-24.0-2025-12-05/mn/invalidated | "/tmp/hf-datasets-cache/medium/datasets/59625365119621-config-parquet-and-info-onlysainaa-common-voi(...TRUNCATED) |
"Y2xpZW50X2lkCXBhdGgJc2VudGVuY2VfaWQJc2VudGVuY2UJc2VudGVuY2VfZG9tYWluCXVwX3ZvdGVzCWRvd25fdm90ZXMJYWd(...TRUNCATED) | cv-corpus-24.0-2025-12-05/mn/other | "/tmp/hf-datasets-cache/medium/datasets/59625365119621-config-parquet-and-info-onlysainaa-common-voi(...TRUNCATED) |
"c2VudGVuY2VfaWQJc2VudGVuY2UJbG9jYWxlCXJlYXNvbgowMGJhYWUxYjc1MmE4MmZiM2MzY2JlYTVmZDRlZGFiZTE4ODhkOTc(...TRUNCATED) | cv-corpus-24.0-2025-12-05/mn/reported | "/tmp/hf-datasets-cache/medium/datasets/59625365119621-config-parquet-and-info-onlysainaa-common-voi(...TRUNCATED) |
"Y2xpZW50X2lkCXBhdGgJc2VudGVuY2VfaWQJc2VudGVuY2UJc2VudGVuY2VfZG9tYWluCXVwX3ZvdGVzCWRvd25fdm90ZXMJYWd(...TRUNCATED) | cv-corpus-24.0-2025-12-05/mn/test | "/tmp/hf-datasets-cache/medium/datasets/59625365119621-config-parquet-and-info-onlysainaa-common-voi(...TRUNCATED) |
"Y2xpZW50X2lkCXBhdGgJc2VudGVuY2VfaWQJc2VudGVuY2UJc2VudGVuY2VfZG9tYWluCXVwX3ZvdGVzCWRvd25fdm90ZXMJYWd(...TRUNCATED) | cv-corpus-24.0-2025-12-05/mn/train | "/tmp/hf-datasets-cache/medium/datasets/59625365119621-config-parquet-and-info-onlysainaa-common-voi(...TRUNCATED) |
"c2VudGVuY2VfaWQJc2VudGVuY2UJc2VudGVuY2VfZG9tYWluCXNvdXJjZQowNjgwZTdkYTliZTU0ZTZiYTI0NzE0NDEwMmVhNWF(...TRUNCATED) | cv-corpus-24.0-2025-12-05/mn/unvalidated_sentences | "/tmp/hf-datasets-cache/medium/datasets/59625365119621-config-parquet-and-info-onlysainaa-common-voi(...TRUNCATED) |
"Y2xpZW50X2lkCXBhdGgJc2VudGVuY2VfaWQJc2VudGVuY2UJc2VudGVuY2VfZG9tYWluCXVwX3ZvdGVzCWRvd25fdm90ZXMJYWd(...TRUNCATED) | cv-corpus-24.0-2025-12-05/mn/validated | "/tmp/hf-datasets-cache/medium/datasets/59625365119621-config-parquet-and-info-onlysainaa-common-voi(...TRUNCATED) |
"c2VudGVuY2VfaWQJc2VudGVuY2UJc2VudGVuY2VfZG9tYWluCXNvdXJjZQlpc191c2VkCWNsaXBzX2NvdW50CjAwMDJjYTY1ZWE(...TRUNCATED) | cv-corpus-24.0-2025-12-05/mn/validated_sentences | "/tmp/hf-datasets-cache/medium/datasets/59625365119621-config-parquet-and-info-onlysainaa-common-voi(...TRUNCATED) |
π²π³ Common Voice Mongolian 24.0 Dataset
This repository hosts the latest release (v24.0) of the Mozilla Common Voice Scripted Speech dataset for Mongolian (mn). This dataset is a vital resource for training robust Automatic Speech Recognition (ASR) and Text-to-Speech (TTS) systems for the Mongolian language.
π Dataset Statistics
| Metric | Value |
|---|---|
| Total Clips | 96,308 |
| Total Duration | 140.56 Hours |
| Validated Duration | 49.19 Hours |
| Total Speakers | 606 |
| Format | MP3 (contained in .tar.gz) |
This version includes a significant increase in validated hours compared to previous releases, improving its reliability for supervised learning.
π Getting Started
Method 1: Using huggingface_hub (Recommended for Raw Archive)
You can download the specific tarball programmatically. This method is best if you need the original directory structure.
from huggingface_hub import hf_hub_download
import os
repo_id = "onlysainaa/common-voice-scripted-speech-24.0-mongolian"
filename = "cv-corpus-24.0-2025-12-05-mn.tar.gz"
# Download the file
download_path = hf_hub_download(
repo_id=repo_id,
filename=filename,
repo_type="dataset",
local_dir="./data"
)
print(f"File downloaded to: {download_path}")
Method 2: Command Line (Git LFS)
Bash
git lfs install
git clone [https://huggingface.co/datasets/onlysainaa/common-voice-scripted-speech-24.0-mongolian](https://huggingface.co/datasets/onlysainaa/common-voice-scripted-speech-24.0-mongolian)
π οΈ Extraction & Usage
To extract the audio clips and metadata files:
Bash
tar -xf ./data/cv-corpus-24.0-2025-12-05-mn.tar.gz
Common use cases:
ASR: Fine-tuning Whisper or Wav2Vec2 models for Mongolian.
TTS: Developing natural-sounding Mongolian synthetic voices.
Linguistics: Analyzing dialectal variations and phonetic patterns.
π Citation If you use this dataset in your research or project, please cite it as follows:
Code snippet @misc{commonvoice_mn24, title = {Mozilla Common Voice 24.0 - Mongolian}, author = {Mozilla Foundation}, year = {2025}, publisher = {Hugging Face}, journal = {Hugging Face Datasets}, howpublished = {\url{https://huggingface.co/datasets/onlysainaa/common-voice-scripted-speech-24.0-mongolian}} }
π Acknowledgements
Special thanks to the Mozilla Common Voice contributors and the Mongolian community for making this open-source speech data available.
A massive thank you to Jargalsaikhan Orgil [https://mn.linkedin.com/in/orgil-jargalsaikhan-56818236] from MUST-SICT, who has been the biggest motivation and driving force behind the collection of the Mongolian speech dataset in Common Voice. His dedication is one of the biggest reason this dataset exists today.
- Downloads last month
- 9