freococo commited on
Commit
913f1bb
·
verified ·
1 Parent(s): 941c1b3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +119 -3
README.md CHANGED
@@ -1,3 +1,119 @@
1
- ---
2
- license: cc0-1.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ language:
4
+ - zom
5
+ pretty_name: Zomi ASR
6
+ tags:
7
+ - automatic-speech-recognition
8
+ - audio
9
+ - zomi
10
+ - kuki-chin
11
+ - burmese
12
+ - myanmar
13
+ - webdataset
14
+ - public-domain
15
+ task_categories:
16
+ - automatic-speech-recognition
17
+ - audio-to-audio
18
+ - audio-classification
19
+ language_creators:
20
+ - found
21
+ source_datasets:
22
+ - original
23
+ ---
24
+ **This is the first public Zomi language ASR dataset in AI history.**
25
+
26
+ # Zomi ASR
27
+
28
+ This dataset contains audio recordings and aligned metadata in the **Zomi** language — a collective ethnolinguistic identity adopted by some Kuki-Chin language-speaking communities in Myanmar and India. The term **Zomi** means "Zo people", derived from the root word **Zo** (ancestral identity) and **mi** meaning "people." While originally coined to encompass all Zo-related communities, usage of the term varies regionally and politically.
29
+
30
+ All audio segments in this dataset were sourced from publicly available news broadcasts by **Zoland Voice TV**, an ethnic-language news channel affiliated with the **National Unity Government (NUG)** of Myanmar. These broadcasts promote information access in minority languages, including Zomi.
31
+
32
+ The dataset includes over **18.99 hours** of segmented and labeled audio, prepared in [WebDataset](https://github.com/webdataset/webdataset) format, with paired `.audio` and `.json` files suitable for training automatic speech recognition (ASR) systems.
33
+
34
+ ### Acknowledgments
35
+
36
+ Special thanks to:
37
+
38
+ - **Zoland Voice TV and PVTV** for producing and releasing multilingual content freely
39
+ - **National Unity Government (NUG)** for supporting inclusive language outreach
40
+ - Volunteers and researchers advancing low-resource ASR for ethnic languages
41
+
42
+ ## Dataset Structure & Format
43
+
44
+ This dataset follows the [WebDataset](https://github.com/webdataset/webdataset) format. Each training sample consists of two paired files inside a tar archive:
45
+
46
+ - `XXXX.audio` — the audio chunk (in MP3 format)
47
+ - `XXXX.json` — the corresponding metadata (UTF-8 JSON)
48
+
49
+ 🟢 Minimum chunk duration: 2.04 sec
50
+ 🔴 Maximum chunk duration: 15.05 sec
51
+
52
+ Each `.json` file contains the following fields:
53
+
54
+ ```json
55
+ {
56
+ "file_name": "XXXX.audio",
57
+ "video_id": "YouTubeVideoID",
58
+ "title": "Original broadcast title from Zoland Voice TV",
59
+ "url": "https://www.youtube.com/watch?v=YouTubeVideoID",
60
+ "duration": 13.24
61
+ }
62
+ ```
63
+ ## Usage Example
64
+
65
+ You can load and stream this dataset using the Hugging Face `datasets` library:
66
+ ```
67
+ from datasets import load_dataset
68
+
69
+ dataset = load_dataset(
70
+ "freococo/zomi_asr",
71
+ split="train",
72
+ streaming=True
73
+ )
74
+
75
+ for sample in dataset:
76
+ print(sample["audio"]) # Audio object
77
+ print(sample["file_name"]) # Chunk filename
78
+ print(sample["duration"]) # Duration in seconds
79
+ print(sample["title"]) # Broadcast title
80
+ print(sample["url"]) # YouTube source URL
81
+ ```
82
+ Each sample includes:
83
+ - `audio`: the audio chunk (stored as `.audio`, typically MP3 format)
84
+ - `file_name`: filename of the chunk
85
+ - `title`: broadcast title in Zomi or Burmese
86
+ - `url`: original YouTube video link
87
+ - `video_id`: YouTube video ID
88
+ - `duration`: duration of the audio in seconds
89
+
90
+ ## Known Limitations
91
+
92
+ This dataset was segmented automatically from broadcast videos using pause-based or fixed-length chunking. As such:
93
+
94
+ - **No transcriptions** are included.
95
+ - Some chunks may contain **background music**, **news jingles**, or **non-speech segments**.
96
+ - No **speaker labels**, **noise filtering**, or **speech-vs-music tagging** is applied.
97
+ - Audio quality varies depending on the original broadcast conditions.
98
+
99
+ Despite these limitations, this dataset is the most comprehensive public resource available for developing ASR and pretraining models in the Zomi language.
100
+
101
+ ## Licensing & Use
102
+
103
+ All content is released under the **Creative Commons Zero (CC0 1.0 Universal)** public domain dedication.
104
+
105
+ You are free to:
106
+ ```
107
+ - Use, adapt, and remix the data
108
+ - Train both open and commercial models
109
+ - Publish derivative works, applications, and papers
110
+ ```
111
+ We ask users to respect the dignity and intent of the original community broadcasts.
112
+
113
+ ## 📚 Citation
114
+
115
+ > **Freococo (2025).**
116
+ > *Zomi ASR*
117
+ > [https://huggingface.co/datasets/freococo/zomi_asr](https://huggingface.co/datasets/freococo/zomi_asr)
118
+ > Dataset compiled from Zoland Voice TV ethnic news broadcasts in the Zomi language.
119
+ > Released under CC0 1.0 (Public Domain).