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

#381 Feature/sg 000 connect to lab

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:feature/sg-000_connect_to_lab
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
  1. # stride_N_plus is for models where the first skip begins from the feature map with output stride N and higher
  2. # grids of [input_size / N x input_size / N] and smaller
  3. # NOTE: changing anchors to a different stride requires updating output_paths in model anch params
  4. # because feat_size are hardcoded and won't automatically change in a model
  5. 256x256:
  6. stride_16_plus:
  7. _target_: super_gradients.training.utils.ssd_utils.DefaultBoxes
  8. fig_size: 256
  9. feat_size: [ 32, 16, 8, 4, 2, 1 ]
  10. scales: [ 18, 38, 84, 131, 177, 223, 269 ]
  11. aspect_ratios: [ [ 2 ], [ 2, 3 ], [ 2, 3 ], [ 2, 3 ], [ 2 ], [ 2 ] ]
  12. scale_xy: 0.1
  13. scale_wh: 0.2
  14. stride_8_plus: [[2, 3], [2, 3], [2, 3], [2, 3], [2, 3], [2, 3]]
  15. 300x300:
  16. stride_8_plus:
  17. _target_: super_gradients.training.utils.ssd_utils.DefaultBoxes
  18. fig_size: 300
  19. feat_size: [38, 19, 10, 5, 3, 2]
  20. scales: [21, 45, 99, 153, 207, 261, 315]
  21. aspect_ratios: [[2], [2, 3], [2, 3], [2, 3], [2], [2]]
  22. scale_xy: 0.1
  23. scale_wh: 0.2
  24. stride_16_plus:
  25. _target_: super_gradients.training.utils.ssd_utils.DefaultBoxes
  26. fig_size: 300
  27. feat_size: [19, 10, 5, 3, 2, 1]
  28. scales: [21, 45, 99, 153, 207, 261, 315]
  29. aspect_ratios: [[2, 3], [2, 3], [2, 3], [2, 3], [2, 3], [2, 3]]
  30. scale_xy: 0.1
  31. scale_wh: 0.2
  32. 320x320:
  33. stride_8_plus:
  34. _target_: super_gradients.training.utils.ssd_utils.DefaultBoxes
  35. fig_size: 320
  36. feat_size: [ 40, 20, 10, 5, 3, 2 ]
  37. scales: [ 22, 48, 106, 163, 221, 278, 336 ]
  38. aspect_ratios: [ [ 2 ], [ 2, 3 ], [ 2, 3 ], [ 2, 3 ], [ 2 ], [ 2 ] ]
  39. scale_xy: 0.1
  40. scale_wh: 0.2
  41. stride_16_plus:
  42. _target_: super_gradients.training.utils.ssd_utils.DefaultBoxes
  43. fig_size: 320
  44. feat_size: [ 20, 10, 5, 3, 2, 1 ]
  45. scales: [ 22, 48, 106, 163, 221, 278, 336 ]
  46. aspect_ratios: [ [ 2, 3 ], [ 2, 3 ], [ 2, 3 ], [ 2, 3 ], [ 2, 3 ], [ 2, 3 ] ]
  47. scale_xy: 0.1
  48. scale_wh: 0.2
  49. stride_16_plus_big:
  50. _target_: super_gradients.training.utils.ssd_utils.DefaultBoxes
  51. fig_size: 320
  52. feat_size: [ 20, 10, 5, 3, 2, 1 ]
  53. scales: [ 32, 82, 133, 184, 235, 285, 336 ]
  54. aspect_ratios: [ [ 2, 3 ], [ 2, 3 ], [ 2, 3 ], [ 2, 3 ], [ 2, 3 ], [ 2, 3 ] ]
  55. scale_xy: 0.1
  56. scale_wh: 0.2
Discard
Tip!

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