Upload processor
Browse files- preprocessor_config.json +39 -0
preprocessor_config.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_valid_processor_keys": [
|
| 3 |
+
"images",
|
| 4 |
+
"segmentation_maps",
|
| 5 |
+
"do_resize",
|
| 6 |
+
"size",
|
| 7 |
+
"resample",
|
| 8 |
+
"do_rescale",
|
| 9 |
+
"rescale_factor",
|
| 10 |
+
"do_normalize",
|
| 11 |
+
"image_mean",
|
| 12 |
+
"image_std",
|
| 13 |
+
"do_reduce_labels",
|
| 14 |
+
"return_tensors",
|
| 15 |
+
"data_format",
|
| 16 |
+
"input_data_format"
|
| 17 |
+
],
|
| 18 |
+
"do_normalize": true,
|
| 19 |
+
"do_reduce_labels": true,
|
| 20 |
+
"do_rescale": true,
|
| 21 |
+
"do_resize": true,
|
| 22 |
+
"image_mean": [
|
| 23 |
+
0.485,
|
| 24 |
+
0.456,
|
| 25 |
+
0.406
|
| 26 |
+
],
|
| 27 |
+
"image_processor_type": "SegformerImageProcessor",
|
| 28 |
+
"image_std": [
|
| 29 |
+
0.229,
|
| 30 |
+
0.224,
|
| 31 |
+
0.225
|
| 32 |
+
],
|
| 33 |
+
"resample": 2,
|
| 34 |
+
"rescale_factor": 0.00392156862745098,
|
| 35 |
+
"size": {
|
| 36 |
+
"height": 1200,
|
| 37 |
+
"width": 1200
|
| 38 |
+
}
|
| 39 |
+
}
|