Datasets:
Tasks:
Automatic Speech Recognition
Formats:
webdataset
Languages:
Kachin
Size:
1K - 10K
DOI:
License:
Update README.md
Browse files
README.md
CHANGED
@@ -15,6 +15,8 @@ tags:
|
|
15 |
- public-domain
|
16 |
task_categories:
|
17 |
- automatic-speech-recognition
|
|
|
|
|
18 |
language_creators:
|
19 |
- found
|
20 |
source_datasets:
|
@@ -23,11 +25,10 @@ source_datasets:
|
|
23 |
|
24 |
# Dataset Summary
|
25 |
|
26 |
-
**Kachin ASR Audio** is a collection of speech data in the Kachin (Jinghpaw) language, sourced from publicly available
|
27 |
|
28 |
Each audio file is paired with metadata including the original filename and duration. The dataset is distributed in WebDataset `.tar` format for efficient streaming and scalable training workflows.
|
29 |
|
30 |
-
|
31 |
## Supported Tasks and Use Cases
|
32 |
|
33 |
This dataset is primarily intended for:
|
@@ -54,21 +55,19 @@ All files are stored inside a `train/kachin.tar` archive, allowing for efficient
|
|
54 |
## Data Splits
|
55 |
|
56 |
This release provides a single `train` split containing all available audio chunks.
|
57 |
-
|
58 |
- **Train**: 6,786 audio segments
|
59 |
- **Validation/Test**: Not included in this version
|
60 |
-
|
61 |
If needed, users can partition the dataset into training, validation, and test sets using random sampling, duration thresholds, or speaker-based segmentation strategies.
|
62 |
|
63 |
## Dataset Creation and Sources
|
64 |
|
65 |
-
This dataset was curated from publicly available audio sources
|
66 |
|
67 |
-
- **PVTV (People’s Voice Television)** —
|
68 |
-
- **Voice of NUG** — speech excerpts from the National Unity Government (NUG) of Myanmar
|
69 |
-
- **Ethnic Language Programs** — regional news and educational radio clips in the Kachin (Jinghpaw) language
|
70 |
|
71 |
-
All audio was downloaded directly from
|
72 |
|
73 |
Audio segments were chunked using a combination of silence-based segmentation and manual review. Only segments containing clear speech were retained.
|
74 |
|
@@ -89,19 +88,40 @@ This dataset is released under the [Creative Commons Zero (CC0 1.0)](https://cre
|
|
89 |
|
90 |
Please respect cultural and ethical norms when using indigenous voice data in production systems or media.
|
91 |
|
92 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
|
94 |
Special thanks to:
|
95 |
-
- PVTV and Voice of NUG for publishing Kachin-language broadcasts
|
96 |
-
- Indigenous language journalists and community radio presenters
|
97 |
-
- The open-source ASR community and Hugging Face for dataset hosting support
|
98 |
-
-
|
99 |
-
## Citation
|
100 |
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
- public-domain
|
16 |
task_categories:
|
17 |
- automatic-speech-recognition
|
18 |
+
task_ids:
|
19 |
+
- automatic-speech-recognition
|
20 |
language_creators:
|
21 |
- found
|
22 |
source_datasets:
|
|
|
25 |
|
26 |
# Dataset Summary
|
27 |
|
28 |
+
**Kachin ASR Audio** is a collection of speech data in the Kachin (Jinghpaw) language, sourced entirely from publicly available PVTV (People’s Voice Television) broadcasts. The dataset includes narration, interviews, and spoken reports intended to support the development of automatic speech recognition (ASR) systems for low-resource indigenous languages in Myanmar.
|
29 |
|
30 |
Each audio file is paired with metadata including the original filename and duration. The dataset is distributed in WebDataset `.tar` format for efficient streaming and scalable training workflows.
|
31 |
|
|
|
32 |
## Supported Tasks and Use Cases
|
33 |
|
34 |
This dataset is primarily intended for:
|
|
|
55 |
## Data Splits
|
56 |
|
57 |
This release provides a single `train` split containing all available audio chunks.
|
58 |
+
```
|
59 |
- **Train**: 6,786 audio segments
|
60 |
- **Validation/Test**: Not included in this version
|
61 |
+
```
|
62 |
If needed, users can partition the dataset into training, validation, and test sets using random sampling, duration thresholds, or speaker-based segmentation strategies.
|
63 |
|
64 |
## Dataset Creation and Sources
|
65 |
|
66 |
+
This dataset was curated from publicly available audio sources from:
|
67 |
|
68 |
+
- **PVTV (People’s Voice Television)** — an independent, public-facing news media channel that broadcasts audio in ethnic languages including Kachin (Jinghpaw)
|
|
|
|
|
69 |
|
70 |
+
All audio was downloaded directly from PVTV's YouTube channel. The content is in the public domain or released under open access media guidelines, making it legally shareable for research and development purposes.
|
71 |
|
72 |
Audio segments were chunked using a combination of silence-based segmentation and manual review. Only segments containing clear speech were retained.
|
73 |
|
|
|
88 |
|
89 |
Please respect cultural and ethical norms when using indigenous voice data in production systems or media.
|
90 |
|
91 |
+
## Usage Example (Python)
|
92 |
+
|
93 |
+
To load the `kachin.tar` dataset using Hugging Face `datasets`:
|
94 |
+
|
95 |
+
```python
|
96 |
+
from datasets import load_dataset
|
97 |
+
|
98 |
+
dataset = load_dataset(
|
99 |
+
"freococo/kachin_asr_audio",
|
100 |
+
split="train",
|
101 |
+
streaming=True
|
102 |
+
)
|
103 |
+
|
104 |
+
for sample in dataset:
|
105 |
+
|
106 |
+
print(sample["audio"], sample["original_file"], sample["duration"])
|
107 |
+
```
|
108 |
+
This loads the audio + JSON metadata from the `.tar` directly using Hugging Face’s streaming interface (WebDataset support).
|
109 |
+
|
110 |
+
## Acknowledgements
|
111 |
|
112 |
Special thanks to:
|
|
|
|
|
|
|
|
|
|
|
113 |
|
114 |
+
- **PVTV (People’s Voice Television)** for publishing Kachin-language broadcasts freely
|
115 |
+
- Indigenous Kachin journalists and radio presenters for their community voice
|
116 |
+
- The open-source ASR community and Hugging Face for infrastructure and tooling
|
117 |
+
|
118 |
+
## Citation
|
119 |
+
```
|
120 |
+
@misc{freococo2024kachin,
|
121 |
+
title = {Kachin ASR Audio Dataset},
|
122 |
+
author = {freococo},
|
123 |
+
year = {2024},
|
124 |
+
howpublished = {\url{https://huggingface.co/datasets/freococo/kachin_asr_audio}},
|
125 |
+
note = {Public domain speech dataset for Kachin (Jinghpaw) ASR research}
|
126 |
+
}
|
127 |
+
```
|