preprocessor_config.json
| 1 | { |
| 2 | "_valid_processor_keys": [ |
| 3 | "images", |
| 4 | "do_resize", |
| 5 | "size", |
| 6 | "keep_aspect_ratio", |
| 7 | "ensure_multiple_of", |
| 8 | "resample", |
| 9 | "do_rescale", |
| 10 | "rescale_factor", |
| 11 | "do_normalize", |
| 12 | "image_mean", |
| 13 | "image_std", |
| 14 | "do_pad", |
| 15 | "return_tensors", |
| 16 | "data_format", |
| 17 | "input_data_format" |
| 18 | ], |
| 19 | "do_normalize": true, |
| 20 | "do_pad": true, |
| 21 | "do_rescale": true, |
| 22 | "do_resize": true, |
| 23 | "ensure_multiple_of": 32, |
| 24 | "image_mean": [ |
| 25 | 0.5, |
| 26 | 0.5, |
| 27 | 0.5 |
| 28 | ], |
| 29 | "image_processor_type": "ZoeDepthImageProcessor", |
| 30 | "image_std": [ |
| 31 | 0.5, |
| 32 | 0.5, |
| 33 | 0.5 |
| 34 | ], |
| 35 | "keep_aspect_ratio": true, |
| 36 | "resample": 2, |
| 37 | "rescale_factor": 0.00392156862745098, |
| 38 | "size": { |
| 39 | "height": 384, |
| 40 | "width": 512 |
| 41 | } |
| 42 | } |
| 43 | |