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.

nasfcos.py 689 B

2 years ago
12345678910111213141516171819202122
  1. # Copyright (c) OpenMMLab. All rights reserved.
  2. from ..builder import DETECTORS
  3. from .single_stage import SingleStageDetector
  4. @DETECTORS.register_module()
  5. class NASFCOS(SingleStageDetector):
  6. """NAS-FCOS: Fast Neural Architecture Search for Object Detection.
  7. https://arxiv.org/abs/1906.0442
  8. """
  9. def __init__(self,
  10. backbone,
  11. neck,
  12. bbox_head,
  13. train_cfg=None,
  14. test_cfg=None,
  15. pretrained=None,
  16. init_cfg=None):
  17. super(NASFCOS, self).__init__(backbone, neck, bbox_head, train_cfg,
  18. test_cfg, pretrained, init_cfg)

No Description

Contributors (2)