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

#869 Add DagsHub Logger to Super Gradients

Merged
Ghost merged 1 commits into Deci-AI:master from timho102003:dagshub_logger
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
  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_ddrnet39_arch_params
  6. - checkpoint_params: default_checkpoint_params
  7. - _self_
  8. - variable_setup
  9. resume: False
  10. architecture: pose_ddrnet39
  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. dataset_params:
  20. train_dataloader_params:
  21. batch_size: 8
  22. val_dataloader_params:
  23. batch_size: 16
  24. training_hyperparams:
  25. resume: ${resume}
  26. phase_callbacks: []
  27. # Note: You can uncomment following block to enable visualization of intermediate results during training.
  28. # When enabled, these callbacks will save first batch from training & validation to Tensorboard.
  29. # This is helpful for debugging and doing visual checks whether predictions are reasonable and transforms are
  30. # working as expected.
  31. # The only downside is that it tend to bloat Tensorboard logs (Up to ten Gigs for long training regimes).
  32. # phase_callbacks:
  33. # - DEKRVisualizationCallback:
  34. # phase:
  35. # _target_: super_gradients.training.utils.callbacks.callbacks.Phase
  36. # value: TRAIN_BATCH_END
  37. # prefix: "train_"
  38. # mean: [ 0.485, 0.456, 0.406 ]
  39. # std: [ 0.229, 0.224, 0.225 ]
  40. # apply_sigmoid: False
  41. #
  42. # - DEKRVisualizationCallback:
  43. # phase:
  44. # _target_: super_gradients.training.utils.callbacks.callbacks.Phase
  45. # value: VALIDATION_BATCH_END
  46. # prefix: "val_"
  47. # mean: [ 0.485, 0.456, 0.406 ]
  48. # std: [ 0.229, 0.224, 0.225 ]
  49. # apply_sigmoid: False
Discard
Tip!

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