SarwarShafee
commited on
Commit
•
5b664db
1
Parent(s):
de1c6e4
Update README.md
Browse files
README.md
CHANGED
@@ -33,3 +33,29 @@ configs:
|
|
33 |
|
34 |
To evaluate the performance of the models, we used four test sets. Two of these were developed as part of the MegaBNSpeech corpus, while the remaining two (Fleurs and Common Voice) are commonly used test sets that are widely recognized by the speech community.
|
35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
To evaluate the performance of the models, we used four test sets. Two of these were developed as part of the MegaBNSpeech corpus, while the remaining two (Fleurs and Common Voice) are commonly used test sets that are widely recognized by the speech community.
|
35 |
|
36 |
+
## Use dataset library:
|
37 |
+
```python
|
38 |
+
from datasets import load_dataset
|
39 |
+
dataset = load_dataset("hishab/MegaBNSpeech_Test_Data")
|
40 |
+
```
|
41 |
+
## Reported Word error rate (WER) /character error rate (CER) on four test sets using four ASR systems
|
42 |
+
|
43 |
+
| Category | Duration (hr) | MegaBNSpeech | Google MMS | OOD-speech |
|
44 |
+
|-------------------- | -------------- | ------------ | ---------- | ----------- |
|
45 |
+
| MegaBNSpeech-YT | 8.1 | 6.4/3.39 | 28.3/18.88 | 51.1/23.49 |
|
46 |
+
| MegaBNSpeech-Tel | 1.9 | ∗40.7/24.38 | ∗59/41.26 | ∗76.8/39.36 |
|
47 |
+
| | | | | ∗69.9/52.93 |
|
48 |
+
|
49 |
+
## Reported Word error rate (WER) /character error rate (CER) on different categories present in Hishab BN FastConformer
|
50 |
+
|
51 |
+
| Category | Duration (hr) | Hishab BN FastConformer | Google MMS | OOD-speech |
|
52 |
+
|-------------------- | -------------- | ------------ | ---------- | ----------- |
|
53 |
+
| News | 1.21 | 2.5/1.21 | 18.9/10.46 | 52.2/21.65 |
|
54 |
+
| Talkshow | 1.39 | 6/3.29 | 28/18.71 | 48.8/21.5 |
|
55 |
+
| Courses | 3.81 | 6.8/3.79 | 30.8/21.64 | 50.2/23.52 |
|
56 |
+
| Drama | 0.03 | 10.3/7.47 | 37.3/27.43 | 64.3/32.74 |
|
57 |
+
| Science | 0.26 | 5/1.92 | 20.6/11.4 | 45.3/19.93 |
|
58 |
+
| Vlog | 0.18 | 11.3/6.69 | 33/22.9 | 57.9/27.18 |
|
59 |
+
| Recipie | 0.58 | 7.5/3.29 | 26.4/16.6 | 53.3/26.89 |
|
60 |
+
| Waz | 0.49 | 9.6/5.45 | 33.3/23.1 | 57.3/27.46 |
|
61 |
+
| Movie | 0.1 | 8/4.64 | 35.2/23.88 | 64.4/34.96 |
|