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.2 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
  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. backbone_struct: [3, 9, 9, 3] # the number of blocks in every stage of the backbone
  11. channels_in: 3 # # of classes the model predicts
  12. skip_connections_dict: {12: [6], 16: [4], 19: [14], 22: [10], 24: [17, 20]}
  13. # A dictionary defining skip connections. format is target: [source1, source2, ...]. Each item defines a skip
  14. # connection from all sources to the target according to the layers index (count starts from the backbone)
  15. connection_layers_input_channel_size: [1024, 1024, 512]
  16. # default number off channels for the connecting points between the backbone and the head
  17. fuse_conv_and_bn: False # Fuse sequential Conv + B.N layers into a single one
  18. add_nms: False # Add the NMS module to the computational graph
  19. _convert_: all
Tip!

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

Comments

Loading...