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

#284 Fix training prints

Merged
oferbaratz merged 1 commits into Deci-AI:master from deci-ai:hotfix/SG-000-fix_training_prints
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
  1. defaults:
  2. - default_train_params
  3. max_epochs: 300
  4. lr_mode: cosine
  5. cosine_final_lr_ratio: 0.05
  6. lr_warmup_epochs: 5
  7. lr_cooldown_epochs: 15
  8. warmup_bias_lr: 0.0
  9. warmup_momentum: 0.9
  10. initial_lr: 0.02
  11. warmup_mode: yolov5_warmup
  12. batch_accumulate: 1
  13. save_ckpt_epoch_list: [285]
  14. loss: yolox_loss
  15. criterion_params:
  16. strides: [8, 16, 32] # output strides of all yolo outputs
  17. num_classes: 80
  18. loss_logging_items_names: [iou, obj, cls, l1, num_fg, Loss]
  19. optimizer: SGD
  20. optimizer_params:
  21. momentum: 0.9
  22. weight_decay: 0.0005
  23. nesterov: True
  24. ema: True
  25. mixed_precision: True
  26. valid_metrics_list:
  27. - DetectionMetrics:
  28. normalize_targets: True
  29. post_prediction_callback:
  30. _target_: super_gradients.training.models.detection_models.yolov5_base.YoloV5PostPredictionCallback
  31. iou: 0.65
  32. conf: 0.01
  33. num_cls: 80
  34. pre_prediction_callback: DetectionMultiscalePrePredictionCallback
  35. phase_callbacks:
  36. - YoloXTrainingStageSwitchCallback:
  37. next_stage_start_epoch: 285
  38. metric_to_watch: 'mAP@0.50:0.95'
  39. greater_metric_to_watch_is_better: True
  40. _convert_: all
Discard
Tip!

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