tiennguyenbnbk commited on
Commit
b5912f6
·
verified ·
1 Parent(s): c4a6d35

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +26 -110
README.md CHANGED
@@ -1,112 +1,28 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: text
7
- dtype: string
8
- - name: phone_list
9
- list: string
10
- length: 39
11
- - name: utt_heads
12
- list: string
13
- length: 4
14
- - name: word_heads
15
- list: string
16
- length: 1
17
- - name: scale
18
- dtype: string
19
- - name: max_len
20
- dtype: int32
21
- - name: phn
22
- list: int16
23
- length: 150
24
- - name: phone_label
25
- list: float32
26
- length: 150
27
- - name: phone_weight
28
- list: float32
29
- length: 150
30
- - name: n_vendors
31
- list: uint8
32
- length: 150
33
- - name: word_id
34
- list: int16
35
- length: 150
36
- - name: word_acc
37
- list: float32
38
- length: 150
39
- - name: word_weight
40
- list: float32
41
- length: 150
42
- - name: msdd_type
43
- list: int16
44
- length: 150
45
- - name: msdd_sub
46
- list: int16
47
- length: 150
48
- - name: utt_label
49
- list: float32
50
- length: 4
51
- - name: utt_weight
52
- list: float32
53
- length: 4
54
- - name: utt_nv
55
- list: uint8
56
- length: 4
57
- - name: feat
58
- dtype:
59
- array2_d:
60
- shape:
61
- - 150
62
- - 80
63
- dtype: float32
64
- - name: occ
65
- list: float32
66
- length: 150
67
- - name: dur
68
- list: float32
69
- length: 150
70
- - name: eng
71
- dtype:
72
- array2_d:
73
- shape:
74
- - 150
75
- - 7
76
- dtype: float32
77
- - name: wavlm
78
- dtype:
79
- array2_d:
80
- shape:
81
- - 150
82
- - 1024
83
- dtype: float16
84
- - name: wavlm_layer
85
- dtype: int32
86
- splits:
87
- - name: train
88
- num_bytes: 1702194410
89
- num_examples: 4643
90
- - name: val
91
- num_bytes: 213004937
92
- num_examples: 581
93
- - name: test_unseen_speakers
94
- num_bytes: 212636082
95
- num_examples: 580
96
- - name: test_unseen_prompts
97
- num_bytes: 204225936
98
- num_examples: 557
99
- download_size: 2344416926
100
- dataset_size: 2332061365
101
- configs:
102
- - config_name: default
103
- data_files:
104
- - split: train
105
- path: data/train-*
106
- - split: val
107
- path: data/val-*
108
- - split: test_unseen_speakers
109
- path: data/test_unseen_speakers-*
110
- - split: test_unseen_prompts
111
- path: data/test_unseen_prompts-*
112
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ pretty_name: "VuiHoc GOPT Gold Features (GOP-80d + Prosody-8d + WavLM-1024d)"
5
+ tags:
6
+ - goodness-of-pronunciation
7
+ - pronunciation-assessment
8
+ - wavlm
9
+ - gopt
10
+ size_categories:
11
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ---
13
+
14
+ # VuiHoc GOPT Gold Features (Đã trích xuất đầy đủ Feature)
15
+
16
+ Dataset GOPT VuiHoc Gold (6,361 câu) đã được trích xuất sẵn toàn bộ Feature trên GPU:
17
+ - `feat` [150, 80]: KoelLabs-GOP (log-posterior ratio normalized)
18
+ - `occ` [150]: Soft occupancy
19
+ - `dur` [150] + `eng` [150, 7]: Prosody 8-d (Viterbi forced alignment + RMSE energy)
20
+ - `wavlm` [150, 1024]: WavLM-large Layer 12 pooled per-phone (fp16)
21
+ - Nhãn: `phn`, `phone_label`, `word_acc`, `utt_label`, `msdd_type`, `msdd_sub`
22
+
23
+ ## Load trực tiếp để train
24
+
25
+ ```python
26
+ from datasets import load_dataset
27
+ ds = load_dataset("tiennguyenbnbk/gopt-vh-gold-features")
28
+ ```