jatingocodeo commited on
Commit
b1893fb
·
verified ·
1 Parent(s): 8d20b99

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +6 -0
  2. preprocessor_config.json +1 -0
README.md CHANGED
@@ -52,3 +52,9 @@ The model was trained on the ImageNet dataset with the following configuration:
52
  - Learning Rate: 0.003 with cosine scheduling
53
  - Batch Size: 256
54
  - Data Augmentation: RandomResizedCrop, RandomHorizontalFlip, ColorJitter, RandomAffine, RandomPerspective
 
 
 
 
 
 
 
52
  - Learning Rate: 0.003 with cosine scheduling
53
  - Batch Size: 256
54
  - Data Augmentation: RandomResizedCrop, RandomHorizontalFlip, ColorJitter, RandomAffine, RandomPerspective
55
+
56
+ ## Preprocessing
57
+
58
+ The model expects images to be preprocessed as follows:
59
+ - Resize to 224x224
60
+ - Normalize with mean [0.485, 0.456, 0.406] and std [0.229, 0.224, 0.225]
preprocessor_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"do_normalize": true, "do_resize": true, "image_mean": [0.485, 0.456, 0.406], "image_processor_type": "AutoImageProcessor", "image_std": [0.229, 0.224, 0.225], "resample": 2, "size": {"height": 224, "width": 224}}