glip_atss_swin-l_fpn_dyhead_pretrain_mixeddata.py 347 B

123456789101112
  1. _base_ = './glip_atss_swin-t_a_fpn_dyhead_pretrain_obj365.py'
  2. model = dict(
  3. backbone=dict(
  4. embed_dims=192,
  5. depths=[2, 2, 18, 2],
  6. num_heads=[6, 12, 24, 48],
  7. window_size=12,
  8. drop_path_rate=0.4,
  9. ),
  10. neck=dict(in_channels=[384, 768, 1536]),
  11. bbox_head=dict(early_fuse=True, num_dyhead_blocks=8))