freococo commited on
Commit
296d5fd
·
1 Parent(s): 82546a0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +129 -5
README.md CHANGED
@@ -1,5 +1,129 @@
1
- ---
2
- license: other
3
- license_name: custom
4
- license_link: LICENSE
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ language:
4
+ - mnw
5
+ pretty_name: RFA Mon Language Voices
6
+ tags:
7
+ - audio
8
+ - asr
9
+ - speech-recognition
10
+ - mon
11
+ - webdataset
12
+ - myanmar
13
+ task_categories:
14
+ - automatic-speech-recognition
15
+ - audio-classification
16
+ - voice-activity-detection
17
+ language_creators:
18
+ - found
19
+ source_datasets:
20
+ - original
21
+ ---
22
+
23
+ # RFA Mon Language Voices
24
+
25
+ This dataset contains **14.8 hours** of audio in the **Mon** language, sourced from news broadcasts by **Radio Free Asia (RFA) Burmese**. This is one of the largest publicly accessible audio resources for the Mon language, designed to support research in low-resource automatic speech recognition (ASR), voice activity detection, and other speech-related tasks.
26
+
27
+ This dataset was created by **freococo**.
28
+
29
+ The audio has been automatically segmented into **3,634** manageable chunks and prepared in the efficient [WebDataset](https://github.com/webdataset/webdataset) format. It includes rich metadata extracted from the original YouTube videos, but **does not contain transcriptions**, making it ideal for self-supervised pre-training or tasks that do not require text.
30
+
31
+ ### Acknowledgments
32
+
33
+ This dataset was made possible by the journalists and broadcasters at **Radio Free Asia (RFA)** who produce and publish high-quality content in the languages of Myanmar.
34
+
35
+ ## Dataset Structure & Format
36
+
37
+ This dataset follows the [WebDataset](https://github.com/webdataset/webdataset) format. Each sample consists of two paired files inside a `.tar.gz` archive:
38
+
39
+ - `XXXX.mp3` — the audio chunk (up to 15 seconds)
40
+ - `XXXX.json` — the corresponding metadata (UTF-8 JSON)
41
+
42
+ 🟢 **Minimum chunk duration:** 0.97 seconds
43
+ 🔴 **Maximum chunk duration:** 15.01 seconds
44
+
45
+ Each `.json` file contains a rich set of fields preserved from the original YouTube video:
46
+
47
+ ```json
48
+ {
49
+ "__key__": "some_video_id_chunk_0000",
50
+ "file_name": "some_video_id_chunk_0000.mp3",
51
+ "title": "မွန်တိုင်းရင်းသားဘာသာ သတင်းအစီအစဉ်",
52
+ "uploader": "RFA လွတ်လပ်တဲ့အာရှအသံ",
53
+ "channel_url": "https://www.youtube.com/channel/UCE75dgnEYPacknHHg3a3sJg",
54
+ "upload_date": "20230101",
55
+ "duration": 15.0,
56
+ "video_url": "https://www.youtube.com/watch?v=some_video_id",
57
+ "thumbnail_url": "https://i.ytimg.com/vi/some_video_id/maxresdefault.jpg",
58
+ "description": "မွန်တိုင်းရင်းသားဘာသာ သတင်းအစီအစဉ်...",
59
+ "tags": [
60
+ "Radio Free Asia",
61
+ "Burma",
62
+ "Myanmar",
63
+ "Burmese",
64
+ "RFA",
65
+ "news"
66
+ ],
67
+ "view_count": 1234,
68
+ "like_count": 56,
69
+ "language": "mnw",
70
+ "original_video_id": "some_video_id"
71
+ }
72
+ ```
73
+
74
+ ## Usage Example
75
+
76
+ You can easily stream this dataset using the Hugging Face `datasets` library. The `streaming=True` mode is highly recommended.
77
+
78
+ ```python
79
+ from datasets import load_dataset
80
+
81
+ dataset = load_dataset(
82
+ "freococo/mon_language_asr_audio",
83
+ split="train",
84
+ streaming=True
85
+ )
86
+
87
+ for sample in dataset.take(5):
88
+ print(sample["audio"]) # Audio object with decoded waveform
89
+ print(sample["json"]["title"]) # Access metadata from the JSON
90
+ print(f"Duration: {sample['json']['duration']}s")
91
+ ```
92
+
93
+ ## Known Limitations
94
+
95
+ This dataset was created using an automated pipeline and has the following characteristics:
96
+
97
+ - **No Transcriptions:** This dataset is audio-only and does not include text transcriptions.
98
+ - **Background Noise:** As the audio is sourced from news broadcasts, some segments may contain background music, jingles, or other non-speech sounds.
99
+ - **No Speaker Labels:** The dataset does not differentiate between different speakers within or across broadcasts.
100
+
101
+ Despite these limitations, this resource is invaluable for pre-training models like Wav2Vec2, developing voice activity detection systems, or performing other unsupervised speech research for the Mon language.
102
+
103
+ ## Licensing & Use
104
+
105
+ This dataset contains audio content derived from the official YouTube channel of **Radio Free Asia (RFA) Burmese**. All original content is the exclusive property of RFA and is protected by copyright.
106
+
107
+ The use of this dataset is governed by the official [RFA Terms of Use](https://www.rfa.org/about/termsofuse).
108
+
109
+ In summary, the content is made available for **non-commercial, informational, and educational purposes only**.
110
+
111
+ - **Permitted Use**: You may use this dataset for non-commercial research, personal projects, and educational applications.
112
+ - **Prohibited Use**: Any commercial use, including but not limited to training proprietary AI models for commercial products, is not permitted without explicit written permission from RFA.
113
+ - **Required Attribution**: When using or referencing this dataset, you must provide clear attribution to **Radio Free Asia (RFA)** as the original source of the content.
114
+
115
+ By using this dataset, you agree to abide by these terms.
116
+
117
+ ## 📚 Citation
118
+
119
+ If you use this dataset in your work, please cite it as follows:
120
+
121
+ ```
122
+ @dataset{freococo_mon_language_asr_audio_2025,
123
+ author = {freococo},
124
+ title = {RFA Mon Language Voices},
125
+ year = {2025},
126
+ url = {https://huggingface.co/datasets/freococo/mon_language_asr_audio},
127
+ note = {Dataset compiled from Radio Free Asia (RFA) Burmese news broadcasts.}
128
+ }
129
+ ```