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
  1. defaults:
  2. - default_arch_params
  3. anchors:
  4. _target_: super_gradients.training.utils.detection_utils.Anchors
  5. anchors_list: [[10, 13, 16, 30, 33, 23],[30, 61, 62, 45, 59, 119],[116, 90, 156, 198, 373, 326]]
  6. strides: [8, 16, 32]
  7. num_classes: 80 # Number of classes to predict
  8. depth_mult_factor: 1.0 # depth multiplier for the entire model, overridden for predefined YoloV5S, YoloV5M, YoloV5L
  9. width_mult_factor: 1.0 # width multiplier for the entire model, overridden for predefined YoloV5S, YoloV5M, YoloV5L
  10. channels_in: 3 # Number of channels in the input image
  11. skip_connections_list: [[12, [6]], [16, [4]], [19, [14]], [22, [10]], [24, [17, 20]]]
  12. # A list defining skip connections. format is [target: [source1, source2, ...]]. Each item defines a skip
  13. # connection from all sources to the target according to the layers index (count starts from the backbone)
  14. backbone_connection_channels: [1024, 512, 256] # width of backbone channels that are concatenated with the head
  15. scaled_backbone_width: True # True if width_mult_factor is applied to the backbone
  16. # (is the case with the default backbones)
  17. # which means that backbone_connection_channels should be used with a width_mult_factor
  18. # False if backbone_connection_channels should be used as is
  19. fuse_conv_and_bn: False # Fuse sequential Conv + B.N layers into a single one
  20. add_nms: False # Add the NMS module to the computational graph
  21. nms_conf: 0.25 # When add_nms is True during NMS predictions with confidence lower than this will be discarded
  22. nms_iou: 0.45 # When add_nms is True IoU threshold for NMS algorithm
  23. # (with smaller value more boxed will be considered "the same" and removed)
  24. yolo_type: 'yolox' # Type of yolo to build: 'yoloX' is th only type currently supported.
  25. stem_type: # 'focus' and '6x6' are supported, by default is defined by yolo_type and yolo_version
  26. depthwise: False # use depthwise separable convolutions all over the model
  27. xhead_inter_channels: # (has an impact only if yolo_type is yoloX)
  28. # Channels in classification and regression branches of the detecting blocks
  29. # if is None the first of input channels will be used by default
  30. xhead_groups: # (has an impact only if yolo_type is yoloX)
  31. # Num groups in convs in classification and regression branches of the detecting blocks
  32. # if None default groups will be used according to conv type
  33. # (1 for Conv and depthwise for GroupedConvBlock)
  34. _convert_: all
Discard
Tip!

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