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.

yolox.py 675 B

2 years ago
1234567891011121314151617181920
  1. # Copyright (c) OpenMMLab. All rights reserved.
  2. from ..builder import DETECTORS
  3. from .single_stage import SingleStageDetector
  4. @DETECTORS.register_module()
  5. class YOLOX(SingleStageDetector):
  6. r"""Implementation of `YOLOX: Exceeding YOLO Series in 2021
  7. <https://arxiv.org/abs/2107.08430>`_"""
  8. def __init__(self,
  9. backbone,
  10. neck,
  11. bbox_head,
  12. train_cfg=None,
  13. test_cfg=None,
  14. pretrained=None,
  15. init_cfg=None):
  16. super(YOLOX, self).__init__(backbone, neck, bbox_head, train_cfg,
  17. test_cfg, pretrained, init_cfg)

No Description

Contributors (1)