Create preprocessor_config.json
#20
by
Ruthw1k
- opened
- preprocessor_config.json +10 -0
preprocessor_config.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"image_size": 224,
|
3 |
+
"image_mean": [0.485, 0.456, 0.406],
|
4 |
+
"image_std": [0.229, 0.224, 0.225],
|
5 |
+
"max_text_length": 128,
|
6 |
+
"do_resize": true,
|
7 |
+
"do_normalize": true,
|
8 |
+
"do_center_crop": false,
|
9 |
+
"resize_mode": "bilinear"
|
10 |
+
}
|