grahamaco commited on
Commit
425ad11
·
verified ·
1 Parent(s): 066c405

Upload eval_results.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. eval_results.json +113 -0
eval_results.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model": "efficientnet_b0",
3
+ "dataset": "AI-Lab-Makerere/beans",
4
+ "test_samples": 128,
5
+ "classes": [
6
+ "angular_leaf_spot",
7
+ "bean_rust",
8
+ "healthy"
9
+ ],
10
+ "classification_report": {
11
+ "angular_leaf_spot": {
12
+ "precision": 0.9230769230769231,
13
+ "recall": 0.8372093023255814,
14
+ "f1-score": 0.8780487804878049,
15
+ "support": 43.0
16
+ },
17
+ "bean_rust": {
18
+ "precision": 0.8723404255319149,
19
+ "recall": 0.9534883720930233,
20
+ "f1-score": 0.9111111111111111,
21
+ "support": 43.0
22
+ },
23
+ "healthy": {
24
+ "precision": 0.9761904761904762,
25
+ "recall": 0.9761904761904762,
26
+ "f1-score": 0.9761904761904762,
27
+ "support": 42.0
28
+ },
29
+ "accuracy": 0.921875,
30
+ "macro avg": {
31
+ "precision": 0.9238692749331047,
32
+ "recall": 0.922296050203027,
33
+ "f1-score": 0.9217834559297974,
34
+ "support": 128.0
35
+ },
36
+ "weighted avg": {
37
+ "precision": 0.9234605155482816,
38
+ "recall": 0.921875,
39
+ "f1-score": 0.9213584010840108,
40
+ "support": 128.0
41
+ }
42
+ },
43
+ "confusion_matrix": [
44
+ [
45
+ 36,
46
+ 6,
47
+ 1
48
+ ],
49
+ [
50
+ 2,
51
+ 41,
52
+ 0
53
+ ],
54
+ [
55
+ 1,
56
+ 0,
57
+ 41
58
+ ]
59
+ ],
60
+ "macro_f1": 0.9217834559297974,
61
+ "accuracy": 0.921875,
62
+ "per_class": {
63
+ "angular_leaf_spot": {
64
+ "precision": 0.9230769230769231,
65
+ "recall": 0.8372093023255814,
66
+ "f1": 0.8780487804878049,
67
+ "support": 43.0
68
+ },
69
+ "bean_rust": {
70
+ "precision": 0.8723404255319149,
71
+ "recall": 0.9534883720930233,
72
+ "f1": 0.9111111111111111,
73
+ "support": 43.0
74
+ },
75
+ "healthy": {
76
+ "precision": 0.9761904761904762,
77
+ "recall": 0.9761904761904762,
78
+ "f1": 0.9761904761904762,
79
+ "support": 42.0
80
+ }
81
+ },
82
+ "holdout_passed": true,
83
+ "self_improvement_history": [
84
+ {
85
+ "round": 1,
86
+ "config": {
87
+ "epochs": 10,
88
+ "lr": 0.0002,
89
+ "augment": 1
90
+ },
91
+ "val_f1": 0.9328,
92
+ "test_f1": 0.8762,
93
+ "passed": false
94
+ },
95
+ {
96
+ "round": 2,
97
+ "config": {
98
+ "epochs": 15,
99
+ "lr": 0.0001,
100
+ "augment": 2
101
+ },
102
+ "val_f1": 0.924,
103
+ "test_f1": 0.9218,
104
+ "passed": true
105
+ }
106
+ ],
107
+ "winning_round": 2,
108
+ "winning_config": {
109
+ "epochs": 15,
110
+ "lr": 0.0001,
111
+ "augment": 2
112
+ }
113
+ }