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

yolo_arch_params.yaml 1.5 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  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 # # of classes the model predicts
  11. skip_connections_dict: {12: [6], 16: [4], 19: [14], 22: [10], 24: [17, 20]}
  12. # A dictionary 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. connection_layers_input_channel_size: [1024, 1024, 512]
  15. # default number off channels for the connecting points between the backbone and the head
  16. fuse_conv_and_bn: False # Fuse sequential Conv + B.N layers into a single one
  17. add_nms: False # Add the NMS module to the computational graph
  18. nms_conf: 0.25 # When add_nms is True during NMS predictions with confidence lower than this will be discarded
  19. nms_iou: 0.45 # When add_nms is True IoU threshold for NMS algorithm
  20. # (with smaller value more boxed will be considered "the same" and removed)
  21. yolo_version: 'v6.0' # Release version of Ultralytics to built a model from: v.6.0 and v3.0 are supported
  22. _convert_: all
Tip!

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

Comments

Loading...