jimbozhang commited on
Commit
db83ba8
1 Parent(s): 1182676

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -12,6 +12,30 @@ size_categories:
12
  ---
13
  # speechocean762: A non-native English corpus for pronunciation scoring task
14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
 
16
  ## Introduction
17
  Pronunciation scoring is a crucial technology in computer-assisted language learning (CALL) systems. The pronunciation quality scores might be given at phoneme-level, word-level, and sentence-level for a typical pronunciation scoring task.
 
12
  ---
13
  # speechocean762: A non-native English corpus for pronunciation scoring task
14
 
15
+ ## Example
16
+ ```python
17
+ >>> from datasets import load_dataset
18
+
19
+ >>> test_set = load_dataset("mispeech/speechocean762", split="test")
20
+
21
+ >>> len(test_set)
22
+ 2500
23
+
24
+ >>> next(iter(test_set))
25
+ {'file': 'WAVE/SPEAKER0003/000030012.WAV',
26
+ 'audio': {'path': 'WAVE/SPEAKER0003/000030012.WAV',
27
+ 'array': array([-0.00119019, -0.00500488, -0.00283813, ..., 0.00274658,
28
+ 0. , 0.00125122]),
29
+ 'sampling_rate': 16000},
30
+ 'text': 'MARK IS GOING TO SEE ELEPHANT',
31
+ 'speaker': '0003',
32
+ 'gender': 'm',
33
+ 'age': 6,
34
+ 'accuracy': 9,
35
+ 'fluency': 9,
36
+ 'prosodic': 9,
37
+ 'total': 9}
38
+ ```
39
 
40
  ## Introduction
41
  Pronunciation scoring is a crucial technology in computer-assisted language learning (CALL) systems. The pronunciation quality scores might be given at phoneme-level, word-level, and sentence-level for a typical pronunciation scoring task.