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

#1001 Bug/sg 861 decouple qat from train from config

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:bug/SG-861_decouple_qat_from_train_from_config
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
54
55
56
57
58
59
60
  1. defaults:
  2. - default_train_params
  3. max_epochs: 500
  4. static_assigner_end_epoch: 150
  5. warmup_mode: "linear_batch_step"
  6. warmup_initial_lr: 1e-6
  7. lr_warmup_steps: 1000
  8. lr_warmup_epochs: 0
  9. initial_lr: 2e-3
  10. lr_mode: cosine
  11. cosine_final_lr_ratio: 0.1
  12. zero_weight_decay_on_bias_and_bn: False
  13. batch_accumulate: 1
  14. save_ckpt_epoch_list: [200, 250, 300, 350, 400, 450]
  15. loss:
  16. ppyoloe_loss:
  17. num_classes: ${arch_params.num_classes}
  18. reg_max: ${arch_params.head.reg_max}
  19. optimizer: AdamW
  20. optimizer_params:
  21. weight_decay: 0.0001
  22. ema: True
  23. ema_params:
  24. decay: 0.9997
  25. decay_type: threshold
  26. mixed_precision: False
  27. sync_bn: True
  28. valid_metrics_list:
  29. - DetectionMetrics:
  30. score_thres: 0.1
  31. top_k_predictions: 300
  32. num_cls: ${arch_params.num_classes}
  33. normalize_targets: True
  34. post_prediction_callback:
  35. _target_: super_gradients.training.models.detection_models.pp_yolo_e.PPYoloEPostPredictionCallback
  36. score_threshold: 0.01
  37. nms_top_k: 1000
  38. max_predictions: 300
  39. nms_threshold: 0.7
  40. pre_prediction_callback:
  41. phase_callbacks:
  42. - PPYoloETrainingStageSwitchCallback:
  43. static_assigner_end_epoch: ${training_hyperparams.static_assigner_end_epoch}
  44. metric_to_watch: 'mAP@0.50:0.95'
  45. greater_metric_to_watch_is_better: True
  46. _convert_: all
Discard
Tip!

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