kevinkyi commited on
Commit
d3eb344
·
verified ·
1 Parent(s): c35e65d

Add results.json

Browse files
Files changed (1) hide show
  1. results.json +108 -0
results.json ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "val": {
3
+ "zero": {
4
+ "accuracy": 0.8,
5
+ "precision": 1.0,
6
+ "recall": 0.6,
7
+ "f1": 0.75,
8
+ "confusion_matrix": [
9
+ [
10
+ 5,
11
+ 0
12
+ ],
13
+ [
14
+ 2,
15
+ 3
16
+ ]
17
+ ],
18
+ "latency_s": 0.4157
19
+ },
20
+ "one": {
21
+ "accuracy": 0.5,
22
+ "precision": 0.5,
23
+ "recall": 0.2,
24
+ "f1": 0.2857142857,
25
+ "confusion_matrix": [
26
+ [
27
+ 4,
28
+ 1
29
+ ],
30
+ [
31
+ 4,
32
+ 1
33
+ ]
34
+ ],
35
+ "latency_s": 0.304
36
+ },
37
+ "k5": {
38
+ "accuracy": 0.8,
39
+ "precision": 1.0,
40
+ "recall": 0.6,
41
+ "f1": 0.75,
42
+ "confusion_matrix": [
43
+ [
44
+ 5,
45
+ 0
46
+ ],
47
+ [
48
+ 2,
49
+ 3
50
+ ]
51
+ ],
52
+ "latency_s": 0.4505
53
+ }
54
+ },
55
+ "test": {
56
+ "zero": {
57
+ "accuracy": 0.7,
58
+ "precision": 0.6666666666666666,
59
+ "recall": 0.8,
60
+ "f1": 0.7272727273,
61
+ "confusion_matrix": [
62
+ [
63
+ 3,
64
+ 2
65
+ ],
66
+ [
67
+ 1,
68
+ 4
69
+ ]
70
+ ],
71
+ "latency_s": 0.2822
72
+ },
73
+ "one": {
74
+ "accuracy": 0.7,
75
+ "precision": 0.6666666666666666,
76
+ "recall": 0.8,
77
+ "f1": 0.7272727273,
78
+ "confusion_matrix": [
79
+ [
80
+ 3,
81
+ 2
82
+ ],
83
+ [
84
+ 1,
85
+ 4
86
+ ]
87
+ ],
88
+ "latency_s": 0.3542
89
+ },
90
+ "k5": {
91
+ "accuracy": 0.7,
92
+ "precision": 1.0,
93
+ "recall": 0.4,
94
+ "f1": 0.5714285714,
95
+ "confusion_matrix": [
96
+ [
97
+ 5,
98
+ 0
99
+ ],
100
+ [
101
+ 3,
102
+ 2
103
+ ]
104
+ ],
105
+ "latency_s": 0.4492
106
+ }
107
+ }
108
+ }