kevinkyi commited on
Commit
23ce1ba
·
verified ·
1 Parent(s): 333c711

Add config.json

Browse files
Files changed (1) hide show
  1. config.json +28 -0
config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "arch": "mobilenet_v3_small",
3
+ "dropout": 0.4761270681732692,
4
+ "width": 0,
5
+ "freeze_backbone": false,
6
+ "img_size": 224,
7
+ "mean": [
8
+ 0.485,
9
+ 0.456,
10
+ 0.406
11
+ ],
12
+ "std": [
13
+ 0.229,
14
+ 0.224,
15
+ 0.225
16
+ ],
17
+ "num_classes": 2,
18
+ "label_names": [
19
+ "not_tomato",
20
+ "tomato"
21
+ ],
22
+ "test_metrics": {
23
+ "loss": 0.2256120570279934,
24
+ "acc": 0.9814814925193787,
25
+ "f1": 0.9821428656578064
26
+ },
27
+ "seed": 42
28
+ }