djsamseng commited on
Commit
c5fc269
β€’
1 Parent(s): 8da6410

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
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
+