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

#278 Adding new version of detection dataset, PascalVOC and PascalVOC dataset interface

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:feature/SG-171-DetectionDatasetV2_with_PascalVOC
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
67
68
69
70
71
72
73
  1. # STDC Base training params
  2. defaults:
  3. - training_hyperparams: cityscapes_default_train_params
  4. - dataset_params: cityscapes_dataset_params
  5. - checkpoint_params: default_checkpoint_params
  6. dataset_params:
  7. color_jitter: 0.5
  8. image_mask_transforms_aug:
  9. Compose:
  10. transforms:
  11. - ColorJitterSeg:
  12. brightness: ${dataset_params.color_jitter}
  13. contrast: ${dataset_params.color_jitter}
  14. saturation: ${dataset_params.color_jitter}
  15. - RandomFlipSeg
  16. - RandomRescaleSeg:
  17. scales: ${dataset_params.random_scales}
  18. - PadShortToCropSizeSeg:
  19. crop_size: ${dataset_params.crop_size}
  20. fill_mask: ${dataset_params.cityscapes_ignored_label}
  21. - CropImageAndMaskSeg:
  22. crop_size: ${dataset_params.crop_size}
  23. mode: random
  24. image_mask_transforms:
  25. Compose:
  26. transforms:
  27. - RescaleSeg:
  28. scale_factor: ${dataset_params.eval_scale}
  29. dataset_interface:
  30. cityscapes:
  31. dataset_params: ${dataset_params}
  32. data_loader_num_workers: 10
  33. arch_params:
  34. num_classes: 19
  35. use_aux_heads: True
  36. sync_bn: True
  37. load_checkpoint: False
  38. checkpoint_params:
  39. load_checkpoint: ${load_checkpoint}
  40. external_checkpoint_path:
  41. load_backbone: True
  42. load_weights_only: True
  43. strict_load: no_key_matching
  44. architecture: stdc1_seg
  45. experiment_name: ${architecture}_cityscapes
  46. model_checkpoints_location: local
  47. ckpt_root_dir:
  48. multi_gpu:
  49. _target_: super_gradients.training.sg_model.MultiGPUMode
  50. value: 'DDP'
  51. sg_model:
  52. _target_: super_gradients.SgModel
  53. experiment_name: ${experiment_name}
  54. model_checkpoints_location: ${model_checkpoints_location}
  55. ckpt_root_dir: ${ckpt_root_dir}
  56. multi_gpu: ${multi_gpu}
Discard
Tip!

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