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
  1. # PP-Yolo-E Detection training on COCO2017 Dataset:
  2. # PP-Yolo-E trained in 640x640
  3. # Checkpoints + tensorboards: https://deci-pretrained-models.s3.amazonaws.com/ppyoloe_coco/
  4. # Recipe runs with batch size = 16 X 8 gpus = 128.
  5. # Instructions:
  6. # 0. Make sure that the data is stored in dataset_params.dataset_dir or add "dataset_params.data_dir=<PATH-TO-DATASET>" at the end of the command below (feel free to check ReadMe)
  7. # 1. Move to the project root (where you will find the ReadMe and src folder)
  8. # 2. Run the command you want:
  9. # ppyoloe_s: python -m super_gradients.train_from_recipe --config-name=coco2017_ppyoloe_s
  10. # ppyoloe_m: python -m super_gradients.train_from_recipe --config-name=coco2017_ppyoloe_m
  11. # ppyoloe_l: python -m super_gradients.train_from_recipe --config-name=coco2017_ppyoloe_l
  12. # ppyoloe_x: python -m super_gradients.train_from_recipe --config-name=coco2017_ppyoloe_x
  13. #
  14. # Training times and accuracies (mAP@0.5-0.95 (COCO API, confidence 0.001, IoU threshold 0.6, test on 640x640 images):
  15. # ppyoloe_s: 37h on 8 NVIDIA GeForce RTX 3090, mAP: 42.52 (val)
  16. # ppyoloe_m: 58h on 8 NVIDIA GeForce RTX 3090, mAP: 47.11 (val)
  17. # ppyoloe_l: 115h on 8 NVIDIA GeForce RTX 3090, mAP: 49.48 (val)
  18. # ppyoloe_x: 240h on 8 NVIDIA GeForce RTX 3090, mAP: 51.15 (val)
  19. #
  20. defaults:
  21. - training_hyperparams: coco2017_ppyoloe_train_params
  22. - dataset_params: coco_detection_ppyoloe_dataset_params
  23. - arch_params: ppyoloe_x_arch_params
  24. - checkpoint_params: default_checkpoint_params
  25. - _self_
  26. - variable_setup
  27. train_dataloader: coco2017_train_ppyoloe
  28. val_dataloader: coco2017_val_ppyoloe
  29. load_checkpoint: False
  30. resume: False
  31. dataset_params:
  32. train_dataloader_params:
  33. batch_size: 16
  34. training_hyperparams:
  35. resume: ${resume}
  36. mixed_precision: True
  37. architecture: pp_yoloe_x
  38. multi_gpu: DDP
  39. num_gpus: 8
  40. experiment_suffix: ""
  41. experiment_name: coco2017_${architecture}${experiment_suffix}
Discard
Tip!

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