12 lines
328 B
Python
12 lines
328 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
from ..builder import DETECTORS
|
|
from .cascade_rcnn import CascadeRCNN
|
|
|
|
|
|
@DETECTORS.register_module()
|
|
class SCNet(CascadeRCNN):
|
|
"""Implementation of `SCNet <https://arxiv.org/abs/2012.10150>`_"""
|
|
|
|
def __init__(self, **kwargs):
|
|
super(SCNet, self).__init__(**kwargs)
|