File size: 5,177 Bytes
b2ac06e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54dd7e3
 
33cfe69
b2ac06e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0691ff3
bec7483
b2ac06e
 
 
 
54dd7e3
b2ac06e
 
54dd7e3
b2ac06e
 
 
 
a982689
b2ac06e
a982689
b2ac06e
a982689
b2ac06e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a982689
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b2ac06e
 
 
a982689
 
 
 
 
 
 
 
 
d253bb0
a982689
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
---
annotations_creators:
  - manual
language:
  - kac
license: cc0-1.0
multilinguality: monolingual
pretty_name: Kachin ASR Audio
tags:
  - automatic-speech-recognition
  - audio
  - webdataset
  - kachin
  - indigenous
  - public-domain
task_categories:
  - automatic-speech-recognition
language_creators:
  - found
source_datasets:
  - original
---

# Dataset Summary

**This is the first public Kachin language ASR dataset in history.**

**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 rare-resource indigenous languages in Myanmar.

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.

## Supported Tasks and Use Cases

This dataset is primarily intended for:

- **Automatic Speech Recognition (ASR)**: Training and evaluating models that transcribe spoken Kachin into text.
- **Low-Resource Language Research**: Developing language models, acoustic models, or linguistic tools for indigenous languages.
- **Speech Corpus Alignment**: Providing a foundation for aligning future Kachin-language transcriptions or translations.
- **Government and News Voice Modeling**: Supporting speech synthesis, diarization, or speaker identification tasks using public-domain voices.

Researchers, linguists, and developers working on Southeast Asian NLP or multilingual ASR systems can benefit from this dataset.

## Dataset Structure

The dataset is packaged as a single `.tar` archive in [WebDataset](https://github.com/webdataset/webdataset) format. Each sample consists of:

- `<key>.mp3` — the audio file containing a speech segment in Kachin
- `<key>.json` — a metadata file with the following fields:
  - `file_name`: standardized filename (e.g., `00001.mp3`)
  - `original_file`: original filename before chunking (e.g., `001.mp3`)
  - `duration`: length of the audio segment in seconds (float)
  - 
All files are stored inside a `train/kachin.tar` archive, allowing for efficient streaming and batched processing using WebDataset-compatible tools.

## Data Splits

This release provides a single `train` split containing all available audio chunks.

- **Train**: 6,786 audio segments
- **Validation/Test**: Not included in this version

If needed, users can partition the dataset into training, validation, and test sets using random sampling, duration thresholds, or speaker-based segmentation strategies.

## Dataset Creation and Sources

This dataset was curated from publicly available audio sources from:

- **PVTV (People’s Voice Television)** — an independent, public-facing news media channel that broadcasts audio in ethnic languages including Kachin (Jinghpaw)

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.

Audio segments were chunked using a combination of silence-based segmentation and manual review. Only segments containing clear speech were retained.

## Licensing and Limitations

This dataset is released under the [Creative Commons Zero (CC0 1.0)](https://creativecommons.org/publicdomain/zero/1.0/) license, placing it in the public domain.

### ✅ Permitted Uses
- Academic and commercial use
- Fine-tuning and publishing ASR models
- Linguistic research on Kachin/Jinghpaw language
- Audio analysis, transcription, and synthesis

### ⚠️ Limitations
- No transcripts are currently included — this is audio-only metadata
- Audio may contain background music, radio effects, or variable recording quality
- Speaker identities are not labeled or anonymized

Please respect cultural and ethical norms when using indigenous voice data in production systems or media.

## Usage Example (Python)

To load the `kachin.tar` dataset using Hugging Face `datasets`:

```python
from datasets import load_dataset

dataset = load_dataset(
    "freococo/kachin_asr_audio",
    split="train",
    streaming=True
)

for sample in dataset:

    print(sample["audio"], sample["original_file"], sample["duration"])
```
This loads the audio + JSON metadata from the `.tar` directly using Hugging Face’s streaming interface (WebDataset support).

## Acknowledgements

Special thanks to:

- **PVTV (People’s Voice Television)** for publishing Kachin-language broadcasts freely  
- Indigenous Kachin journalists and radio presenters for their community voice  
- The open-source ASR community and Hugging Face for infrastructure and tooling  

## Citation
```
@misc{freococo2024kachin,  
  title        = {Kachin ASR Audio Dataset},  
  author       = {freococo},  
  year         = {2025},  
  howpublished = {\url{https://huggingface.co/datasets/freococo/kachin_asr_audio}},  
  note         = {Public domain speech dataset for Kachin (Jinghpaw) ASR research}  
}
```