Create preprocessor_config.json
Browse files- preprocessor_config.json +16 -0
preprocessor_config.json
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "deepfillv2",
|
3 |
+
"image_processor_type": "DeepFillv2ImageProcessor",
|
4 |
+
"do_resize": true,
|
5 |
+
"size": {
|
6 |
+
"height": 1080,
|
7 |
+
"width": 1920
|
8 |
+
},
|
9 |
+
"do_normalize": true,
|
10 |
+
"image_mean": [
|
11 |
+
0.5, 0.5, 0.5
|
12 |
+
],
|
13 |
+
"image_std": [
|
14 |
+
0.5, 0.5, 0.5
|
15 |
+
]
|
16 |
+
}
|