juierror commited on
Commit
dc129a7
1 Parent(s): 6856152

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -1
README.md CHANGED
@@ -46,4 +46,39 @@ def inference(path: str) -> str:
46
  return transcriptions[0]
47
 
48
  print(inference(path=path))
49
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  return transcriptions[0]
47
 
48
  print(inference(path=path))
49
+ ```
50
+
51
+ ## 3) Evaluate Result
52
+ This model has been trained and evaluated on three datasets:
53
+
54
+ - Common Voice 13
55
+ - [Gowajee Corpus](https://github.com/ekapolc/gowajee_corpus)
56
+ ```
57
+ @techreport{gowajee,
58
+ title = {{Gowajee Corpus}},
59
+ author = {Ekapol Chuangsuwanich and Atiwong Suchato and Korrawe Karunratanakul and Burin Naowarat and Chompakorn CChaichot
60
+ and Penpicha Sangsa-nga and Thunyathon Anutarases and Nitchakran Chaipojjana},
61
+ year = {2020},
62
+ institution = {Chulalongkorn University, Faculty of Engineering, Computer Engineering Department},
63
+ month = {12},
64
+ Date-Added = {2021-07-20},
65
+ url = {https://github.com/ekapolc/gowajee_corpus}
66
+ note = {Version 0.9.2}
67
+ }
68
+ ```
69
+ - [Thai Elderly Speech](https://github.com/VISAI-DATAWOW/Thai-Elderly-Speech-dataset/releases/tag/v1.0.0)
70
+
71
+ The Common Voice dataset has been cleaned and divided into training, testing, and development sets. Care has been taken to ensure that the sentences in each set are unique and do not have any duplicates.
72
+ The Gowajee dataset has already been pre-split into training, development, and testing sets, allowing for direct utilization.
73
+ As for the Thai Elderly Speech dataset, I performed a random split.
74
+ The Character Error Rate (CER) is calculated by removing spaces in both the labels and predicted text, and then computing the CER.
75
+ The Word Error Rate (WER) is calculated using the PythaiNLP newmm tokenizer to tokenize both the labels and predicted text, and then computing the WER.
76
+
77
+ These are the results.
78
+
79
+ | Dataset | WER | CER |
80
+ |-----------------------------------|-------|------|
81
+ | Common Voice 13 | 15.89 | 4.32 |
82
+ | Gowajee | 19.58 | 9.01 |
83
+ | Thai Elderly Speech (Smart Home) | 7.13 | 2.21 |
84
+ | Thai Elderly Speech (Health Care) | 6.75 | 1.89 |