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

coco2017_yolov5_train_params.yaml 855 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
33
34
  1. defaults:
  2. - default_train_params
  3. max_epochs: 300
  4. lr_mode: cosine
  5. cosine_final_lr_ratio: 0.2
  6. lr_warmup_epochs: 3
  7. warmup_bias_lr: 0.1
  8. warmup_momentum: 0.8
  9. initial_lr: 0.01 # will be scaled according to num DDP processes
  10. loss: yolo_v5_loss
  11. criterion_params: ??? # will be overridden in train conf as it includes sg_model
  12. loss_logging_items_names: [GIoU, obj, cls, Loss]
  13. optimizer: SGD
  14. optimizer_params:
  15. momentum: 0.937
  16. weight_decay: 0.0005 # will be scaled according to effective batch size
  17. nesterov: True
  18. ema: True
  19. mixed_precision: False
  20. valid_metrics_list:
  21. - _target_: super_gradients.training.metrics.DetectionMetrics
  22. post_prediction_callback:
  23. _target_: super_gradients.training.models.yolov5.YoloV5PostPredictionCallback
  24. num_cls: 80
  25. metric_to_watch: 'mAP@0.50:0.95'
  26. greater_metric_to_watch_is_better: True
  27. _convert_: all
Tip!

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

Comments

Loading...