waliullah123 commited on
Commit
d794185
·
verified ·
1 Parent(s): e8311df

Upload models/thresholds.json

Browse files
Files changed (1) hide show
  1. models/thresholds.json +42 -0
models/thresholds.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "nb": {
3
+ "threshold": 0.5,
4
+ "strategy": "Default",
5
+ "accuracy": 0.9952,
6
+ "sensitivity": 1.0,
7
+ "specificity": 0.99,
8
+ "f1": 0.995
9
+ },
10
+ "lr": {
11
+ "threshold": 0.55,
12
+ "strategy": "Conservative",
13
+ "accuracy": 0.9855,
14
+ "sensitivity": 0.99,
15
+ "specificity": 0.98,
16
+ "f1": 0.985
17
+ },
18
+ "svm": {
19
+ "threshold": 0.55,
20
+ "strategy": "Conservative",
21
+ "accuracy": 0.9952,
22
+ "sensitivity": 0.99,
23
+ "specificity": 1.0,
24
+ "f1": 0.995
25
+ },
26
+ "rf": {
27
+ "threshold": 0.5,
28
+ "strategy": "Default",
29
+ "accuracy": 1.0,
30
+ "sensitivity": 1.0,
31
+ "specificity": 1.0,
32
+ "f1": 1.0
33
+ },
34
+ "ensemble": {
35
+ "threshold": 0.5,
36
+ "strategy": "Default",
37
+ "accuracy": 1.0,
38
+ "sensitivity": 1.0,
39
+ "specificity": 1.0,
40
+ "f1": 1.0
41
+ }
42
+ }