You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

yolox_nano_8x8_300e_coco.py 356 B

2 years ago
1234567891011
  1. _base_ = './yolox_tiny_8x8_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))

No Description

Contributors (2)