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_efficientnet.yaml 838 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
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  1. # TODO: PRODUCE RESULTS AND ADD TENSORBOARDS, LOGS, TRAINING TIME ETC.
  2. defaults:
  3. - training_hyperparams: imagenet_efficientnet_train_params
  4. - dataset_params: imagenet_dataset_params
  5. - arch_params: efficientnet_b0_arch_params
  6. dataset_params:
  7. batch_size: 128
  8. color_jitter: 0.06
  9. dataset_interface:
  10. _target_: super_gradients.training.datasets.dataset_interfaces.dataset_interface.ImageNetDatasetInterface
  11. dataset_params: ${dataset_params}
  12. data_dir: /data/Imagenet
  13. data_loader_num_workers: 32
  14. model_checkpoints_location: local
  15. load_checkpoint: False
  16. experiment_name: mobileNetv3_large_training
  17. multi_gpu:
  18. _target_: super_gradients.training.sg_model.MultiGPUMode
  19. value: 'DDP'
  20. sg_model:
  21. _target_: super_gradients.SgModel
  22. experiment_name: ${experiment_name}
  23. multi_gpu: ${multi_gpu}
  24. architecture: efficientnet_b0
Tip!

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

Comments

Loading...