retinanet_pvtv2-b2_fpn_1x_coco.py 311 B

12345678
  1. _base_ = 'retinanet_pvtv2-b0_fpn_1x_coco.py'
  2. model = dict(
  3. backbone=dict(
  4. embed_dims=64,
  5. num_layers=[3, 4, 6, 3],
  6. init_cfg=dict(checkpoint='https://github.com/whai362/PVT/'
  7. 'releases/download/v2/pvt_v2_b2.pth')),
  8. neck=dict(in_channels=[64, 128, 320, 512]))