Upload processor
Browse files- preprocessor_config.json +24 -0
    	
        preprocessor_config.json
    ADDED
    
    | @@ -0,0 +1,24 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "do_normalize": true,
         | 
| 3 | 
            +
              "do_pad": true,
         | 
| 4 | 
            +
              "do_rescale": true,
         | 
| 5 | 
            +
              "do_resize": true,
         | 
| 6 | 
            +
              "format": "coco_detection",
         | 
| 7 | 
            +
              "image_mean": [
         | 
| 8 | 
            +
                0.485,
         | 
| 9 | 
            +
                0.456,
         | 
| 10 | 
            +
                0.406
         | 
| 11 | 
            +
              ],
         | 
| 12 | 
            +
              "image_processor_type": "DetrImageProcessor",
         | 
| 13 | 
            +
              "image_std": [
         | 
| 14 | 
            +
                0.229,
         | 
| 15 | 
            +
                0.224,
         | 
| 16 | 
            +
                0.225
         | 
| 17 | 
            +
              ],
         | 
| 18 | 
            +
              "resample": 2,
         | 
| 19 | 
            +
              "rescale_factor": 0.00392156862745098,
         | 
| 20 | 
            +
              "size": {
         | 
| 21 | 
            +
                "longest_edge": 1000,
         | 
| 22 | 
            +
                "shortest_edge": 800
         | 
| 23 | 
            +
              }
         | 
| 24 | 
            +
            }
         |