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.

scnet.py 328 B

2 years ago
1234567891011
  1. # Copyright (c) OpenMMLab. All rights reserved.
  2. from ..builder import DETECTORS
  3. from .cascade_rcnn import CascadeRCNN
  4. @DETECTORS.register_module()
  5. class SCNet(CascadeRCNN):
  6. """Implementation of `SCNet <https://arxiv.org/abs/2012.10150>`_"""
  7. def __init__(self, **kwargs):
  8. super(SCNet, self).__init__(**kwargs)

No Description

Contributors (1)