mchochowski
commited on
Commit
•
cc5ac51
1
Parent(s):
8d478ab
Create config.json
Browse files- config.json +27 -0
config.json
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architecture": "resnet50d",
|
3 |
+
"classifier": "fc",
|
4 |
+
"crop_pct": 0.875,
|
5 |
+
"first_conv": "conv1.0",
|
6 |
+
"input_size": [
|
7 |
+
3,
|
8 |
+
224,
|
9 |
+
224
|
10 |
+
],
|
11 |
+
"interpolation": "bicubic",
|
12 |
+
"mean": [
|
13 |
+
0.485,
|
14 |
+
0.456,
|
15 |
+
0.406
|
16 |
+
],
|
17 |
+
"num_classes": 1000,
|
18 |
+
"pool_size": [
|
19 |
+
7,
|
20 |
+
7
|
21 |
+
],
|
22 |
+
"std": [
|
23 |
+
0.229,
|
24 |
+
0.224,
|
25 |
+
0.225
|
26 |
+
]
|
27 |
+
}
|