Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

imagenet_dataset_params.yaml 962 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  1. batch_size: 64 # batch size for trainset in DatasetInterface
  2. val_batch_size: 200 # batch size for valset in DatasetInterface
  3. dataset_dir: /data/Imagenet # path to imagenet directory (local)
  4. traindir: train # dirname inside dataset_dir holding trainset files
  5. valdir: val # dirname inside dataset_dir holding valset files
  6. img_mean: [0.485, 0.456, 0.406] # mean for normalization
  7. img_std: [0.229, 0.224, 0.225] # std for normalization
  8. crop_size: 224 # crop size (size of net's input)
  9. resize_size: 256 # loaded image resize size (appplied first among preprocessing transforms)
  10. color_jitter: 0.0 # color jitter augmentation (applied only to trainset)
  11. imagenet_pca_aug: 0.0 # imagenet pca augmentation (applied only to trainset)
  12. train_interpolation: default # interpolation mode
  13. rand_augment_config_string: # randaugment config string (see super_gradients/training/datasets/auto_augment.py)
  14. random_erase_prob: 0.0 # random erase probability (applied only to trainset)
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...