arndri commited on
Commit
d30ffdf
·
verified ·
1 Parent(s): 55508cc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -8
README.md CHANGED
@@ -50,11 +50,52 @@ base_model:
50
 
51
  <!-- This section describes the evaluation protocols and provides the results. -->
52
 
53
- precision recall f1-score support
54
-
55
- Positive 0.98 0.94 0.96 1098
56
- Negative 0.89 0.96 0.93 601
57
-
58
- accuracy 0.95 1699
59
- macro avg 0.93 0.95 0.94 1699
60
- weighted avg 0.95 0.95 0.95 1699
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
 
51
  <!-- This section describes the evaluation protocols and provides the results. -->
52
 
53
+ <table border="1">
54
+ <thead>
55
+ <tr>
56
+ <th>Class</th>
57
+ <th>Precision</th>
58
+ <th>Recall</th>
59
+ <th>F1-Score</th>
60
+ <th>Support</th>
61
+ </tr>
62
+ </thead>
63
+ <tbody>
64
+ <tr>
65
+ <td>Positive</td>
66
+ <td>0.98</td>
67
+ <td>0.94</td>
68
+ <td>0.96</td>
69
+ <td>1098</td>
70
+ </tr>
71
+ <tr>
72
+ <td>Negative</td>
73
+ <td>0.89</td>
74
+ <td>0.96</td>
75
+ <td>0.93</td>
76
+ <td>601</td>
77
+ </tr>
78
+ <tr>
79
+ <td colspan="5"></td>
80
+ </tr>
81
+ <tr>
82
+ <td>Accuracy</td>
83
+ <td colspan="3">0.95</td>
84
+ <td>1699</td>
85
+ </tr>
86
+ <tr>
87
+ <td>Macro Avg</td>
88
+ <td>0.93</td>
89
+ <td>0.95</td>
90
+ <td>0.94</td>
91
+ <td>1699</td>
92
+ </tr>
93
+ <tr>
94
+ <td>Weighted Avg</td>
95
+ <td>0.95</td>
96
+ <td>0.95</td>
97
+ <td>0.95</td>
98
+ <td>1699</td>
99
+ </tr>
100
+ </tbody>
101
+ </table>