Files
insightface/detection/scrfd/mmdet/models/detectors/gfl.py
2021-05-12 11:40:54 +08:00

17 lines
471 B
Python
Executable File

from ..builder import DETECTORS
from .single_stage import SingleStageDetector
@DETECTORS.register_module()
class GFL(SingleStageDetector):
def __init__(self,
backbone,
neck,
bbox_head,
train_cfg=None,
test_cfg=None,
pretrained=None):
super(GFL, self).__init__(backbone, neck, bbox_head, train_cfg,
test_cfg, pretrained)