|
from .backbones import * |
|
from .builder import (BACKBONES, DETECTORS, HEADS, LOSSES, NECKS, |
|
ROI_EXTRACTORS, SHARED_HEADS, build_backbone, |
|
build_detector, build_head, build_loss, build_neck, |
|
build_roi_extractor, build_shared_head) |
|
from .dense_heads import * |
|
from .detectors import * |
|
from .losses import * |
|
from .necks import * |
|
from .roi_heads import * |
|
|
|
__all__ = [ |
|
'BACKBONES', 'NECKS', 'ROI_EXTRACTORS', 'SHARED_HEADS', 'HEADS', 'LOSSES', |
|
'DETECTORS', 'build_backbone', 'build_neck', 'build_roi_extractor', |
|
'build_shared_head', 'build_head', 'build_loss', 'build_detector' |
|
] |
|
|