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.

decoupled_solo_r50_fpn_1x_coco.py 822 B

2 years ago
12345678910111213141516171819202122232425262728
  1. _base_ = [
  2. './solo_r50_fpn_1x_coco.py',
  3. ]
  4. # model settings
  5. model = dict(
  6. mask_head=dict(
  7. type='DecoupledSOLOHead',
  8. num_classes=80,
  9. in_channels=256,
  10. stacked_convs=7,
  11. feat_channels=256,
  12. strides=[8, 8, 16, 32, 32],
  13. scale_ranges=((1, 96), (48, 192), (96, 384), (192, 768), (384, 2048)),
  14. pos_scale=0.2,
  15. num_grids=[40, 36, 24, 16, 12],
  16. cls_down_index=0,
  17. loss_mask=dict(
  18. type='DiceLoss', use_sigmoid=True, activate=False,
  19. loss_weight=3.0),
  20. loss_cls=dict(
  21. type='FocalLoss',
  22. use_sigmoid=True,
  23. gamma=2.0,
  24. alpha=0.25,
  25. loss_weight=1.0),
  26. norm_cfg=dict(type='GN', num_groups=32, requires_grad=True)))
  27. optimizer = dict(type='SGD', lr=0.01)

No Description

Contributors (2)