mask_rcnn_R_50_FPN_noaug_1x.yaml 522 B

1234567891011121314151617181920
  1. _BASE_: "../Base-RCNN-FPN.yaml"
  2. MODEL:
  3. WEIGHTS: "detectron2://ImageNetPretrained/MSRA/R-50.pkl"
  4. MASK_ON: True
  5. RESNETS:
  6. DEPTH: 50
  7. # Detectron1 uses smooth L1 loss with some magic beta values.
  8. # The defaults are changed to L1 loss in Detectron2.
  9. RPN:
  10. SMOOTH_L1_BETA: 0.1111
  11. ROI_BOX_HEAD:
  12. SMOOTH_L1_BETA: 1.0
  13. POOLER_SAMPLING_RATIO: 2
  14. POOLER_TYPE: "ROIAlign"
  15. ROI_MASK_HEAD:
  16. POOLER_SAMPLING_RATIO: 2
  17. POOLER_TYPE: "ROIAlign"
  18. INPUT:
  19. # no scale augmentation
  20. MIN_SIZE_TRAIN: (800, )