krasserm commited on
Commit
188b9b5
·
1 Parent(s): 8a90b97

Upload processor

Browse files
Files changed (1) hide show
  1. preprocessor_config.json +30 -0
preprocessor_config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "channels_last": true,
3
+ "crop_size": {
4
+ "height": 256,
5
+ "width": 256
6
+ },
7
+ "do_center_crop": true,
8
+ "do_normalize": true,
9
+ "do_rescale": true,
10
+ "do_resize": true,
11
+ "feature_extractor_type": "PerceiverFeatureExtractor",
12
+ "image_mean": [
13
+ 0.485,
14
+ 0.456,
15
+ 0.406
16
+ ],
17
+ "image_processor_type": "PerceiverImageClassifierInputProcessor",
18
+ "image_std": [
19
+ 0.229,
20
+ 0.224,
21
+ 0.225
22
+ ],
23
+ "resample": 3,
24
+ "rescale_factor": 0.00392156862745098,
25
+ "single_channel": false,
26
+ "size": {
27
+ "height": 224,
28
+ "width": 224
29
+ }
30
+ }