Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model:
|
3 |
+
- openai/whisper-small
|
4 |
+
---
|
5 |
+
Note: This classifier also contains fine-tuned `whisper-small` weights in its state dict. It will be properly loaded by my model wrapper.
|
6 |
+
|
7 |
+
Result of the classifier Rob's human-annotated dataset (`data/voicemail_human_eval.csv`):
|
8 |
+
|
9 |
+
```bash
|
10 |
+
Results for chunk size 1 seconds:
|
11 |
+
- Accuracy: 0.7280
|
12 |
+
- Precision: 0.8435
|
13 |
+
- Recall: 0.7337
|
14 |
+
- F1 Score: 0.7848
|
15 |
+
|
16 |
+
|
17 |
+
Results for chunk size 2 seconds:
|
18 |
+
- Accuracy: 0.8120
|
19 |
+
- Precision: 0.9013
|
20 |
+
- Recall: 0.8107
|
21 |
+
- F1 Score: 0.8536
|
22 |
+
|
23 |
+
Results for chunk size 5 seconds:
|
24 |
+
- Accuracy: 0.8520
|
25 |
+
- Precision: 0.9459
|
26 |
+
- Recall: 0.8284
|
27 |
+
- F1 Score: 0.8833
|
28 |
+
|
29 |
+
Results for chunk size 10 seconds:
|
30 |
+
- Accuracy: 0.8840
|
31 |
+
- Precision: 0.9930
|
32 |
+
- Recall: 0.8343
|
33 |
+
- F1 Score: 0.9068
|
34 |
+
|
35 |
+
Results for full audio samples:
|
36 |
+
- Accuracy: 0.8760
|
37 |
+
- Precision: 0.9929
|
38 |
+
- Recall: 0.8225
|
39 |
+
- F1 Score: 0.8997
|
40 |
+
```
|
41 |
+
|