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.

retinanet_pvtv2-b0_fpn_1x_coco.py 618 B

2 years ago
1234567891011121314151617
  1. _base_ = [
  2. '../_base_/models/retinanet_r50_fpn.py',
  3. '../_base_/datasets/coco_detection.py',
  4. '../_base_/schedules/schedule_1x.py', '../_base_/default_runtime.py'
  5. ]
  6. model = dict(
  7. type='RetinaNet',
  8. backbone=dict(
  9. _delete_=True,
  10. type='PyramidVisionTransformerV2',
  11. embed_dims=32,
  12. num_layers=[2, 2, 2, 2],
  13. init_cfg=dict(checkpoint='https://github.com/whai362/PVT/'
  14. 'releases/download/v2/pvt_v2_b0.pth')),
  15. neck=dict(in_channels=[32, 64, 160, 256]))
  16. # optimizer
  17. optimizer = dict(_delete_=True, type='AdamW', lr=0.0001, weight_decay=0.0001)

No Description

Contributors (3)