mirror of https://github.com/RE-OWOD/RE-OWOD
10 lines
341 B
Python
10 lines
341 B
Python
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
|
|
from .config import add_tridentnet_config
|
|
from .trident_backbone import (
|
|
TridentBottleneckBlock,
|
|
build_trident_resnet_backbone,
|
|
make_trident_stage,
|
|
)
|
|
from .trident_rpn import TridentRPN
|
|
from .trident_rcnn import TridentRes5ROIHeads, TridentStandardROIHeads
|