anurag629 commited on
Commit
3e210a2
·
1 Parent(s): b0313bc

Update preprocessor_config.json

Browse files
Files changed (1) hide show
  1. preprocessor_config.json +15 -14
preprocessor_config.json CHANGED
@@ -1,16 +1,17 @@
1
  {
2
- "input_size": [250, 250], // The input image size that your model expects
3
- "normalize": {
4
- "mean": [0.485, 0.456, 0.406], // Mean values for image normalization
5
- "std": [0.229, 0.224, 0.225] // Standard deviation values for image normalization
6
- },
7
- "augmentation": {
8
- "enable": true, // Whether to enable data augmentation
9
- "horizontal_flip": true, // Apply horizontal flip augmentation
10
- "rotation_range": 30, // Rotation range for data augmentation (degrees)
11
- "width_shift_range": 0.1, // Width shift range for data augmentation
12
- "height_shift_range": 0.1, // Height shift range for data augmentation
13
- "shear_range": 0.2, // Shear intensity for data augmentation
14
- "zoom_range": 0.2 // Zoom range for data augmentation
15
- }
 
16
  }
 
1
  {
2
+ "do_normalize": true,
3
+ "do_resize": true,
4
+ "feature_extractor_type": "ViTFeatureExtractor",
5
+ "image_mean": [
6
+ 0.5,
7
+ 0.5,
8
+ 0.5
9
+ ],
10
+ "image_std": [
11
+ 0.5,
12
+ 0.5,
13
+ 0.5
14
+ ],
15
+ "resample": 2,
16
+ "size": 250
17
  }