mirror of https://github.com/hero-y/BHRL
19 lines
616 B
Python
19 lines
616 B
Python
from ..builder import DETECTORS
|
|
from .single_stage import SingleStageDetector
|
|
|
|
|
|
@DETECTORS.register_module()
|
|
class DETR(SingleStageDetector):
|
|
r"""Implementation of `DETR: End-to-End Object Detection with
|
|
Transformers <https://arxiv.org/pdf/2005.12872>`_"""
|
|
|
|
def __init__(self,
|
|
backbone,
|
|
bbox_head,
|
|
train_cfg=None,
|
|
test_cfg=None,
|
|
pretrained=None,
|
|
init_cfg=None):
|
|
super(DETR, self).__init__(backbone, None, bbox_head, train_cfg,
|
|
test_cfg, pretrained, init_cfg)
|