File size: 3,729 Bytes
45793be
38fb276
 
 
 
 
 
 
 
 
 
 
 
 
45793be
 
 
 
 
 
 
 
 
 
 
 
 
 
09decd6
 
45793be
09decd6
 
 
 
45793be
 
 
 
 
 
 
 
38fb276
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
language:
- km
license: other
task_categories:
- automatic-speech-recognition
pretty_name: Khmer ASR v4 (actableai)
size_categories:
- 100K<n<1M
tags:
- khmer
- asr
- speech
- audio
dataset_info:
  features:
  - name: audio
    dtype:
      audio:
        sampling_rate: 16000
  - name: text
    dtype: string
  - name: duration
    dtype: float32
  - name: source
    dtype: string
  splits:
  - name: train
    num_bytes: 56199107865
    num_examples: 486046
  - name: validation
    num_bytes: 1181228871
    num_examples: 9910
  download_size: 59169192403
  dataset_size: 57380336736
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: validation
    path: data/validation-*
---

# Khmer ASR Dataset (v4)

A consolidated Khmer (ខ្មែរ) speech corpus used to train the actableai Khmer ASR
model (NeMo, v4 checkpoint). Combines 17 sub-corpora spanning call-center
recordings, broadcast/cultural content, public ASR corpora, and TTS-synthesised
speech.

## Summary

| Split      | Utterances | Hours   |
|------------|-----------:|--------:|
| train      |    486,046 |  502.77 |
| validation |      9,910 |   10.20 |
| **total**  |  **495,956** | **512.97** |

- Sampling rate: 16 kHz, mono, PCM_16.
- Text: Khmer script (light normalization from the training pipeline only).

## Schema

| Field     | Type              | Description                                |
|-----------|-------------------|--------------------------------------------|
| audio     | `Audio(16000 Hz)` | Mono waveform embedded in parquet.         |
| text      | `string`          | Khmer transcript.                          |
| duration  | `float32`         | Seconds.                                   |
| source    | `string`          | Sub-corpus tag (see below).                |

## Composition by source

| Source               | Train     | Validation |
|----------------------|----------:|-----------:|
| metfone_v1_v3        |   173,836 |      3,547 |
| synth_full           |   107,488 |      2,193 |
| ddd_cultural         |    55,570 |      1,134 |
| sethisak_en_kh       |    26,698 |        544 |
| sethisak_kh_en_v2    |    26,698 |        544 |
| rinabuoy_train       |    24,833 |        506 |
| sethisak             |    21,798 |        444 |
| djsamseng_large      |    17,628 |        359 |
| km_corpus            |    14,645 |        298 |
| sethisak_asr         |     5,545 |        113 |
| openslr42            |     2,848 |         58 |
| kheng                |     2,771 |         56 |
| mpwt                 |     2,017 |         41 |
| shunya               |     1,630 |         33 |
| moses                |       949 |         19 |
| rinabuoy_test        |       750 |         15 |
| grkpp                |       342 |          6 |

`synth_full` is TTS-synthesised speech produced by the actableai OmniVoice
pipeline — added in v4 to widen phonetic and prosodic coverage.

## Usage

```python
from datasets import load_dataset

ds = load_dataset("actableai/data-khmer", split="train", streaming=True)
example = next(iter(ds))
print(example["text"], example["duration"], example["source"])
print(example["audio"]["sampling_rate"], example["audio"]["array"].shape)
```

For ASR evaluation, note that Khmer is a syllabic script without reliable
word boundaries — prefer **CER** over WER.

## Provenance & licensing

This is a research aggregation of multiple upstream sources. The licensing of
each sub-corpus follows its upstream project; downstream users are responsible
for verifying compliance with each source's terms before commercial use.
Synthesised audio (`synth_full`) is released under the same terms as the
upstream TTS voices it was produced from.