提交 58ef369c 编写于 作者: Y Yang Zhang 提交者: qingqing01

Add back import shortcuts (#2527)

上级 758c84a1
......@@ -20,3 +20,11 @@ from . import roi_extractors
from . import roi_heads
from . import ops
from . import target_assigners
from .anchor_heads import *
from .architectures import *
from .backbones import *
from .roi_extractors import *
from .roi_heads import *
from .ops import *
from .target_assigners import *
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
......@@ -15,3 +15,7 @@
from . import rpn_head
from . import yolo_head
from . import retina_head
from .rpn_head import *
from .yolo_head import *
from .retina_head import *
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
......@@ -18,3 +18,10 @@ from . import cascade_rcnn
from . import yolov3
from . import ssd
from . import retinanet
from .faster_rcnn import *
from .mask_rcnn import *
from .cascade_rcnn import *
from .yolov3 import *
from .ssd import *
from .retinanet import *
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
......@@ -18,3 +18,10 @@ from . import darknet
from . import mobilenet
from . import senet
from . import fpn
from .resnet import *
from .resnext import *
from .darknet import *
from .mobilenet import *
from .senet import *
from .fpn import *
......@@ -13,3 +13,4 @@
# limitations under the License.
from . import roi_extractor
from .roi_extractor import *
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
......@@ -15,3 +15,7 @@
from . import bbox_head
from . import mask_head
from . import cascade_head
from .bbox_head import *
from .mask_head import *
from .cascade_head import *
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册