Manh Pham commited on
Commit
38fb276
·
verified ·
1 Parent(s): 09decd6

Add dataset card (v4: 486k train + 9.9k val, 17 sources)

Browse files
Files changed (1) hide show
  1. README.md +87 -0
README.md CHANGED
@@ -1,4 +1,17 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: audio
@@ -28,3 +41,77 @@ configs:
28
  - split: validation
29
  path: data/validation-*
30
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - km
4
+ license: other
5
+ task_categories:
6
+ - automatic-speech-recognition
7
+ pretty_name: Khmer ASR v4 (actableai)
8
+ size_categories:
9
+ - 100K<n<1M
10
+ tags:
11
+ - khmer
12
+ - asr
13
+ - speech
14
+ - audio
15
  dataset_info:
16
  features:
17
  - name: audio
 
41
  - split: validation
42
  path: data/validation-*
43
  ---
44
+
45
+ # Khmer ASR Dataset (v4)
46
+
47
+ A consolidated Khmer (ខ្មែរ) speech corpus used to train the actableai Khmer ASR
48
+ model (NeMo, v4 checkpoint). Combines 17 sub-corpora spanning call-center
49
+ recordings, broadcast/cultural content, public ASR corpora, and TTS-synthesised
50
+ speech.
51
+
52
+ ## Summary
53
+
54
+ | Split | Utterances | Hours |
55
+ |------------|-----------:|--------:|
56
+ | train | 486,046 | 502.77 |
57
+ | validation | 9,910 | 10.20 |
58
+ | **total** | **495,956** | **512.97** |
59
+
60
+ - Sampling rate: 16 kHz, mono, PCM_16.
61
+ - Text: Khmer script (light normalization from the training pipeline only).
62
+
63
+ ## Schema
64
+
65
+ | Field | Type | Description |
66
+ |-----------|-------------------|--------------------------------------------|
67
+ | audio | `Audio(16000 Hz)` | Mono waveform embedded in parquet. |
68
+ | text | `string` | Khmer transcript. |
69
+ | duration | `float32` | Seconds. |
70
+ | source | `string` | Sub-corpus tag (see below). |
71
+
72
+ ## Composition by source
73
+
74
+ | Source | Train | Validation |
75
+ |----------------------|----------:|-----------:|
76
+ | metfone_v1_v3 | 173,836 | 3,547 |
77
+ | synth_full | 107,488 | 2,193 |
78
+ | ddd_cultural | 55,570 | 1,134 |
79
+ | sethisak_en_kh | 26,698 | 544 |
80
+ | sethisak_kh_en_v2 | 26,698 | 544 |
81
+ | rinabuoy_train | 24,833 | 506 |
82
+ | sethisak | 21,798 | 444 |
83
+ | djsamseng_large | 17,628 | 359 |
84
+ | km_corpus | 14,645 | 298 |
85
+ | sethisak_asr | 5,545 | 113 |
86
+ | openslr42 | 2,848 | 58 |
87
+ | kheng | 2,771 | 56 |
88
+ | mpwt | 2,017 | 41 |
89
+ | shunya | 1,630 | 33 |
90
+ | moses | 949 | 19 |
91
+ | rinabuoy_test | 750 | 15 |
92
+ | grkpp | 342 | 6 |
93
+
94
+ `synth_full` is TTS-synthesised speech produced by the actableai OmniVoice
95
+ pipeline — added in v4 to widen phonetic and prosodic coverage.
96
+
97
+ ## Usage
98
+
99
+ ```python
100
+ from datasets import load_dataset
101
+
102
+ ds = load_dataset("actableai/data-khmer", split="train", streaming=True)
103
+ example = next(iter(ds))
104
+ print(example["text"], example["duration"], example["source"])
105
+ print(example["audio"]["sampling_rate"], example["audio"]["array"].shape)
106
+ ```
107
+
108
+ For ASR evaluation, note that Khmer is a syllabic script without reliable
109
+ word boundaries — prefer **CER** over WER.
110
+
111
+ ## Provenance & licensing
112
+
113
+ This is a research aggregation of multiple upstream sources. The licensing of
114
+ each sub-corpus follows its upstream project; downstream users are responsible
115
+ for verifying compliance with each source's terms before commercial use.
116
+ Synthesised audio (`synth_full`) is released under the same terms as the
117
+ upstream TTS voices it was produced from.