Datasets:
Formats:
parquet
Size:
10K - 100K
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
# For reference on dataset card metadata, see the spec: https://github.com/huggingface/hub-docs/blob/main/datasetcard.md?plain=1
|
3 |
+
# Doc / guide: https://huggingface.co/docs/hub/datasets-cards
|
4 |
+
tags:
|
5 |
+
- audio
|
6 |
+
- khmer
|
7 |
+
- english
|
8 |
+
- speech-to-text
|
9 |
+
- translation
|
10 |
+
---
|
11 |
+
|
12 |
+
# Dataset Card for khmer-speech-large-english-google-translation
|
13 |
+
|
14 |
+
Audio recordings of khmer speech with varying speakers and background noises.
|
15 |
+
English transcriptions were transcribed from the Khmer labels using Google Translate.
|
16 |
+
Based off of [seanghay/khmer-speech-large](https://huggingface.co/datasets/seanghay/khmer-speech-large).
|
17 |
+
|
18 |
+
|
19 |
+
## Dataset Details
|
20 |
+
|
21 |
+
### Dataset Description
|
22 |
+
|
23 |
+
- **Language(s) (NLP):** Khmer, English
|
24 |
+
- **License:** [More Information Needed]
|
25 |
+
|
26 |
+
### Dataset Sources
|
27 |
+
|
28 |
+
- **Huggingface:** [seanghay/khmer-speech-large](https://huggingface.co/datasets/seanghay/khmer-speech-large)
|
29 |
+
|
30 |
+
## Usage
|
31 |
+
|
32 |
+
```python
|
33 |
+
from datasets import load_dataset
|
34 |
+
|
35 |
+
ds = load_dataset("djsamseng/khmer-speech-large-english-google-translations")
|
36 |
+
ds["train"] # First 18,000 records
|
37 |
+
ds["test"] # Remaining 1,900 records
|
38 |
+
|
39 |
+
ds["train"][0]["audio"] # { "array": [0.01, 0.02, ...], "sampling_rate": 16000 } }
|
40 |
+
ds["train"][0]["kh"] # "ααα αα
αααα»α ααααα ααα½αααααΆαα αα·α ααααα ααααα ααααααΆαα ααΆα α₯αα·ααΆαα ααΆαα ααααα α’ααααα"
|
41 |
+
ds["train"][0]["en"] # "Live in a society that recognizes and values ββas well as behaves in a way that pleases you"
|
42 |
+
|
43 |
+
```
|
44 |
+
|
45 |
+
## Data Cleaning
|
46 |
+
- If desired, remove `\u200b` characters from both "en" and "kh"
|
47 |
+
- If desired, replace `'` with `'` from "en"
|
48 |
+
|