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

#875 Feature/sg 761 yolo nas

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:feature/SG-761-yolo-nas
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
61
62
63
64
65
66
  1. # TODO Fill in the description of the recipe.
  2. defaults:
  3. - training_hyperparams: coco2017_dekr_pose_train_params
  4. - dataset_params: coco_pose_estimation_dekr_dataset_params
  5. - arch_params: pose_pppose_l_arch_params
  6. - checkpoint_params: default_checkpoint_params
  7. - _self_
  8. - variable_setup
  9. resume: False
  10. architecture: pose_ppyolo_l
  11. multi_gpu: DDP
  12. num_gpus: 8
  13. experiment_suffix: ""
  14. experiment_name: coco2017_${architecture}${experiment_suffix}
  15. train_dataloader: coco2017_pose_train
  16. val_dataloader: coco2017_pose_val
  17. arch_params:
  18. num_classes: ${dataset_params.num_joints}
  19. backbone:
  20. CSPResNetBackbone:
  21. pretrained_weights: https://deci-pretrained-models.s3.amazonaws.com/ppyolo_e/CSPResNetb_l_pretrained.pth
  22. dataset_params:
  23. train_dataloader_params:
  24. batch_size: 12
  25. val_dataloader_params:
  26. batch_size: 16
  27. training_hyperparams:
  28. initial_lr: 0.0001
  29. resume: ${resume}
  30. phase_callbacks: []
  31. # Note: You can uncomment following block to enable visualization of intermediate results during training.
  32. # When enabled, these callbacks will save first batch from training & validation to Tensorboard.
  33. # This is helpful for debugging and doing visual checks whether predictions are reasonable and transforms are
  34. # working as expected.
  35. # The only downside is that it tend to bloat Tensorboard logs (Up to ten Gigs for long training regimes).
  36. # phase_callbacks:
  37. # - DEKRVisualizationCallback:
  38. # phase:
  39. # _target_: super_gradients.training.utils.callbacks.callbacks.Phase
  40. # value: TRAIN_BATCH_END
  41. # prefix: "train_"
  42. # mean: [ 0.485, 0.456, 0.406 ]
  43. # std: [ 0.229, 0.224, 0.225 ]
  44. # apply_sigmoid: False
  45. #
  46. # - DEKRVisualizationCallback:
  47. # phase:
  48. # _target_: super_gradients.training.utils.callbacks.callbacks.Phase
  49. # value: VALIDATION_BATCH_END
  50. # prefix: "val_"
  51. # mean: [ 0.485, 0.456, 0.406 ]
  52. # std: [ 0.229, 0.224, 0.225 ]
  53. # apply_sigmoid: False
Discard
Tip!

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