Upload config.json
Browse files- config.json +42 -0
config.json
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architecture": "resnet10t",
|
3 |
+
"num_classes": 4,
|
4 |
+
"num_features": 512,
|
5 |
+
"pretrained_cfg": {
|
6 |
+
"tag": "c3_in1k",
|
7 |
+
"custom_load": false,
|
8 |
+
"input_size": [
|
9 |
+
3,
|
10 |
+
176,
|
11 |
+
176
|
12 |
+
],
|
13 |
+
"test_input_size": [
|
14 |
+
3,
|
15 |
+
224,
|
16 |
+
224
|
17 |
+
],
|
18 |
+
"fixed_input_size": false,
|
19 |
+
"interpolation": "bicubic",
|
20 |
+
"crop_pct": 0.875,
|
21 |
+
"test_crop_pct": 0.95,
|
22 |
+
"crop_mode": "center",
|
23 |
+
"mean": [
|
24 |
+
0.485,
|
25 |
+
0.456,
|
26 |
+
0.406
|
27 |
+
],
|
28 |
+
"std": [
|
29 |
+
0.229,
|
30 |
+
0.224,
|
31 |
+
0.225
|
32 |
+
],
|
33 |
+
"num_classes": 4,
|
34 |
+
"pool_size": [
|
35 |
+
6,
|
36 |
+
6
|
37 |
+
],
|
38 |
+
"first_conv": "conv1.0",
|
39 |
+
"classifier": "fc",
|
40 |
+
"origin_url": "https://github.com/huggingface/pytorch-image-models"
|
41 |
+
}
|
42 |
+
}
|