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
63
64
  1. # Checkout the datasets at https://universe.roboflow.com/roboflow-100?ref=blog.roboflow.com
  2. #
  3. # `dataset_name` refers to the official name of the dataset.
  4. # You can find it in the url of the dataset: https://universe.roboflow.com/roboflow-100/digits-t2eg6 -> digits-t2eg6
  5. #
  6. # Example: python -m super_gradients.train_from_recipe --config-name=roboflow_yolox dataset_name=digits-t2eg6
  7. defaults:
  8. - training_hyperparams: coco2017_yolox_train_params
  9. - dataset_params: roboflow_detection_dataset_params
  10. - checkpoint_params: default_checkpoint_params
  11. - _self_
  12. - variable_setup
  13. dataset_name: ??? # Placeholder for the name of the dataset you want to use (e.g. "digits-t2eg6")
  14. dataset_params:
  15. dataset_name: ${dataset_name}
  16. num_classes: ${roboflow_dataset_num_classes:${dataset_name}}
  17. architecture: yolox_m
  18. arch_params:
  19. num_classes: ${num_classes}
  20. yolo_type: 'yoloX'
  21. depth_mult_factor: 0.67
  22. width_mult_factor: 0.75
  23. train_dataloader: roboflow_train_yolox
  24. val_dataloader: roboflow_val_yolox
  25. load_checkpoint: False
  26. checkpoint_params:
  27. pretrained_weights: coco
  28. result_path: # By defaults saves results in checkpoints directory
  29. resume: False
  30. training_hyperparams:
  31. max_epochs: 100
  32. resume: ${resume}
  33. criterion_params:
  34. num_classes: ${num_classes}
  35. train_metrics_list:
  36. - DetectionMetrics:
  37. normalize_targets: True
  38. post_prediction_callback:
  39. _target_: super_gradients.training.models.detection_models.yolo_base.YoloPostPredictionCallback
  40. iou: 0.65
  41. conf: 0.01
  42. num_cls: 80
  43. valid_metrics_list:
  44. - DetectionMetrics:
  45. normalize_targets: True
  46. post_prediction_callback:
  47. _target_: super_gradients.training.models.detection_models.yolo_base.YoloPostPredictionCallback
  48. iou: 0.65
  49. conf: 0.01
  50. num_cls: 80
  51. multi_gpu: DDP
  52. num_gpus: 3
  53. experiment_name: ${architecture}_roboflow_${dataset_name}
Discard
Tip!

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