Create config.json
Browse files- config.json +22 -0
config.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architecture": "vit_tiny_patch16_224",
|
| 3 |
+
"num_classes": 512,
|
| 4 |
+
"num_features": 192,
|
| 5 |
+
"global_pool": "token",
|
| 6 |
+
"pretrained_cfg": {
|
| 7 |
+
"input_size": [3, 112, 112],
|
| 8 |
+
"fixed_input_size": true,
|
| 9 |
+
"interpolation": "bicubic",
|
| 10 |
+
"crop_pct": 1.0,
|
| 11 |
+
"crop_mode": "center",
|
| 12 |
+
"mean": [0.5, 0.5, 0.5],
|
| 13 |
+
"std": [0.5, 0.5, 0.5],
|
| 14 |
+
"num_classes": 512,
|
| 15 |
+
"pool_size": null,
|
| 16 |
+
"first_conv": "patch_embed.proj",
|
| 17 |
+
"classifier": "head"
|
| 18 |
+
},
|
| 19 |
+
"model_args": {
|
| 20 |
+
"patch_size": 8
|
| 21 |
+
}
|
| 22 |
+
}
|