Create preprocessor_config.json
Browse files- preprocessor_config.json +13 -0
preprocessor_config.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_resize": true,
|
3 |
+
"keep_aspect_ratio": false,
|
4 |
+
"resample": 3,
|
5 |
+
"size": {
|
6 |
+
"height": 224,
|
7 |
+
"width": 224
|
8 |
+
},
|
9 |
+
"do_normalize": true,
|
10 |
+
"image_mean": [0.485, 0.456, 0.406],
|
11 |
+
"image_std": [0.229, 0.224, 0.225],
|
12 |
+
"do_pad": false
|
13 |
+
}
|