Shortcuts

Source code for mmrotate.models.detectors.rotated_retinanet

# Copyright (c) OpenMMLab. All rights reserved.
from ..builder import ROTATED_DETECTORS
from .single_stage import RotatedSingleStageDetector


[docs]@ROTATED_DETECTORS.register_module() class RotatedRetinaNet(RotatedSingleStageDetector): """Implementation of Rotated `RetinaNet.`__ __ https://arxiv.org/abs/1708.02002 """ def __init__(self, backbone, neck, bbox_head, train_cfg=None, test_cfg=None, pretrained=None, init_cfg=None): super(RotatedRetinaNet, self).__init__(backbone, neck, bbox_head, train_cfg, test_cfg, pretrained, init_cfg)
Read the Docs v: v0.3.2
Versions
latest
stable
v0.3.2
v0.3.1
v0.3.0
v0.2.0
v0.1.1
v0.1.0
main
dev
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.