yolox_nano_8xb8-300e_coco.py 357 B

1234567891011
  1. _base_ = './yolox_tiny_8xb8-300e_coco.py'
  2. # model settings
  3. model = dict(
  4. backbone=dict(deepen_factor=0.33, widen_factor=0.25, use_depthwise=True),
  5. neck=dict(
  6. in_channels=[64, 128, 256],
  7. out_channels=64,
  8. num_csp_blocks=1,
  9. use_depthwise=True),
  10. bbox_head=dict(in_channels=64, feat_channels=64, use_depthwise=True))