Update preprocessor_config.json
Browse files- preprocessor_config.json +5 -16
preprocessor_config.json
CHANGED
@@ -1,20 +1,9 @@
|
|
1 |
{
|
2 |
"do_normalize": true,
|
3 |
"do_resize": true,
|
4 |
-
"
|
5 |
-
"image_mean": [
|
6 |
-
|
7 |
-
0.456,
|
8 |
-
0.406
|
9 |
-
],
|
10 |
-
"image_std": [
|
11 |
-
0.229,
|
12 |
-
0.224,
|
13 |
-
0.225
|
14 |
-
],
|
15 |
"resample": 2,
|
16 |
-
"size": {
|
17 |
-
|
18 |
-
"width": 300
|
19 |
-
}
|
20 |
-
}
|
|
|
1 |
{
|
2 |
"do_normalize": true,
|
3 |
"do_resize": true,
|
4 |
+
"feature_extractor_type": "EfficientNetFeatureExtractor",
|
5 |
+
"image_mean": [0.485, 0.456, 0.406],
|
6 |
+
"image_std": [0.229, 0.224, 0.225],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
"resample": 2,
|
8 |
+
"size": {"height": 300, "width": 300}
|
9 |
+
}
|
|
|
|
|
|