Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- 'no'
|
5 |
+
- nb
|
6 |
+
- nn
|
7 |
+
pipeline_tag: text-classification
|
8 |
+
library_name: fasttext
|
9 |
+
---
|
10 |
+
|
11 |
+
# Test results
|
12 |
+
|
13 |
+
Binary classification accuracy (threshold at label 3) ≈ 73.82%
|
14 |
+
|
15 |
+
Labels: [0, 1, 2, 3, 4, 5]
|
16 |
+
Confusion Matrix:
|
17 |
+
```
|
18 |
+
[[64 29 1 6 0 0]
|
19 |
+
[26 47 6 20 1 0]
|
20 |
+
[10 49 5 36 0 0]
|
21 |
+
[ 7 31 9 48 5 0]
|
22 |
+
[ 1 18 8 56 17 0]
|
23 |
+
[ 1 2 4 26 17 0]]
|
24 |
+
```
|
25 |
+
|
26 |
+
Classification Report:
|
27 |
+
```
|
28 |
+
precision recall f1-score support
|
29 |
+
|
30 |
+
0 0.59 0.64 0.61 100
|
31 |
+
1 0.27 0.47 0.34 100
|
32 |
+
2 0.15 0.05 0.08 100
|
33 |
+
3 0.25 0.48 0.33 100
|
34 |
+
4 0.42 0.17 0.24 100
|
35 |
+
5 0.00 0.00 0.00 50
|
36 |
+
|
37 |
+
accuracy 0.33 550
|
38 |
+
macro avg 0.28 0.30 0.27 550
|
39 |
+
weighted avg 0.31 0.33 0.29 550
|
40 |
+
```
|