onlysainaa commited on
Commit
1c39fd1
·
verified ·
1 Parent(s): 4cf5e9c

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +97 -0
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - mn
5
+ tags:
6
+ - audio
7
+ - automatic-speech-recognition
8
+ - tts
9
+ - speech
10
+ - mongolian
11
+ pretty_name: Common Voice Mongolian 24.0
12
+ size_categories:
13
+ - 10K<n<100K
14
+ ---
15
+
16
+ # 🇲🇳 Common Voice Mongolian 24.0 Dataset
17
+
18
+ [![Dataset Version](https://img.shields.io/badge/Version-24.0-blue)](https://huggingface.co/datasets/onlysainaa/common-voice-scripted-speech-24.0-mongolian)
19
+ [![License](https://img.shields.io/badge/License-Apache%202.0-green)](https://opensource.org/licenses/Apache-2.0)
20
+ [![Language](https://img.shields.io/badge/Language-Mongolian-red)](#)
21
+
22
+ 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.
23
+
24
+ ---
25
+
26
+ ## 📊 Dataset Statistics
27
+
28
+ | Metric | Value |
29
+ | :--- | :--- |
30
+ | **Total Clips** | 96,308 |
31
+ | **Total Duration** | 140.56 Hours |
32
+ | **Validated Duration** | 49.19 Hours |
33
+ | **Total Speakers** | 606 |
34
+ | **Format** | MP3 (contained in `.tar.gz`) |
35
+
36
+ > [!TIP]
37
+ > This version includes a significant increase in validated hours compared to previous releases, improving its reliability for supervised learning.
38
+
39
+ ---
40
+
41
+ ## 🚀 Getting Started
42
+
43
+ ### Method 1: Using `huggingface_hub` (Recommended for Raw Archive)
44
+ You can download the specific tarball programmatically. This method is best if you need the original directory structure.
45
+
46
+ ```python
47
+ from huggingface_hub import hf_hub_download
48
+ import os
49
+
50
+ repo_id = "onlysainaa/common-voice-scripted-speech-24.0-mongolian"
51
+ filename = "cv-corpus-24.0-2025-12-05-mn.tar.gz"
52
+
53
+ # Download the file
54
+ download_path = hf_hub_download(
55
+ repo_id=repo_id,
56
+ filename=filename,
57
+ repo_type="dataset",
58
+ local_dir="./data"
59
+ )
60
+
61
+ print(f"File downloaded to: {download_path}")
62
+ Method 2: Command Line (Git LFS)
63
+ Bash
64
+ git lfs install
65
+ 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)
66
+ 🛠️ Extraction & Usage
67
+ To extract the audio clips and metadata files:
68
+
69
+ Bash
70
+ tar -xf ./data/cv-corpus-24.0-2025-12-05-mn.tar.gz
71
+ Common use cases:
72
+
73
+ ASR: Fine-tuning Whisper or Wav2Vec2 models for Mongolian.
74
+
75
+ TTS: Developing natural-sounding Mongolian synthetic voices.
76
+
77
+ Linguistics: Analyzing dialectal variations and phonetic patterns.
78
+ ```
79
+ 📜 Citation
80
+ If you use this dataset in your research or project, please cite it as follows:
81
+
82
+ Code snippet
83
+ @misc{commonvoice_mn24,
84
+ title = {Mozilla Common Voice 24.0 - Mongolian},
85
+ author = {Mozilla Foundation},
86
+ year = {2025},
87
+ publisher = {Hugging Face},
88
+ journal = {Hugging Face Datasets},
89
+ howpublished = {\url{[https://huggingface.co/datasets/onlysainaa/common-voice-scripted-speech-24.0-mongolian](https://huggingface.co/datasets/onlysainaa/common-voice-scripted-speech-24.0-mongolian)}}
90
+ }
91
+ ## 🙏 Acknowledgements
92
+
93
+ Special thanks to the **Mozilla Common Voice** contributors and the Mongolian community for making this open-source speech data available.
94
+
95
+ 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.
96
+
97
+ ---