LearnWaterFlow commited on
Commit
72f8b66
·
verified ·
1 Parent(s): b75e16c

Create model_index.json

Browse files
Files changed (1) hide show
  1. model_index.json +93 -0
model_index.json ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.0",
3
+ "model_name": "svhn-v1-resnet",
4
+ "task": "image-classification",
5
+ "framework": "pytorch",
6
+ "datasets": [
7
+ {
8
+ "name": "svhn",
9
+ "config": "cropped_digits",
10
+ "split": "test"
11
+ }
12
+ ],
13
+ "metrics": [
14
+ {
15
+ "name": "accuracy",
16
+ "type": "accuracy"
17
+ },
18
+ {
19
+ "name": "f1_macro",
20
+ "type": "f1"
21
+ },
22
+ {
23
+ "name": "f1_micro",
24
+ "type": "f1"
25
+ },
26
+ {
27
+ "name": "f1_weighted",
28
+ "type": "f1"
29
+ },
30
+ {
31
+ "name": "auroc_ovr",
32
+ "type": "roc_auc"
33
+ },
34
+ {
35
+ "name": "auprc_macro",
36
+ "type": "average_precision"
37
+ },
38
+ {
39
+ "name": "expected_calibration_error",
40
+ "type": "ece"
41
+ }
42
+ ],
43
+ "results": [
44
+ {
45
+ "task": {
46
+ "type": "image-classification"
47
+ },
48
+ "dataset": {
49
+ "name": "svhn",
50
+ "type": "svhn",
51
+ "config": "cropped_digits",
52
+ "split": "test"
53
+ },
54
+ "metrics": [
55
+ {
56
+ "name": "accuracy",
57
+ "type": "accuracy",
58
+ "value": 0.97814229
59
+ },
60
+ {
61
+ "name": "f1_macro",
62
+ "type": "f1",
63
+ "value": 0.977171
64
+ },
65
+ {
66
+ "name": "f1_micro",
67
+ "type": "f1",
68
+ "value": 0.978142
69
+ },
70
+ {
71
+ "name": "f1_weighted",
72
+ "type": "f1",
73
+ "value": 0.978137
74
+ },
75
+ {
76
+ "name": "auroc_ovr",
77
+ "type": "roc_auc",
78
+ "value": 0.997699
79
+ },
80
+ {
81
+ "name": "auprc_macro",
82
+ "type": "average_precision",
83
+ "value": 0.990484
84
+ },
85
+ {
86
+ "name": "expected_calibration_error",
87
+ "type": "ece",
88
+ "value": 0.02056
89
+ }
90
+ ]
91
+ }
92
+ ]
93
+ }