__init__.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. from . import bbox_head
  15. from . import mask_head
  16. from . import yolo_head
  17. from . import roi_extractor
  18. from . import ssd_head
  19. from . import fcos_head
  20. from . import solov2_head
  21. from . import ttf_head
  22. from . import cascade_head
  23. from . import face_head
  24. from . import s2anet_head
  25. from . import keypoint_hrhrnet_head
  26. from . import centernet_head
  27. from .bbox_head import *
  28. from .mask_head import *
  29. from .yolo_head import *
  30. from .roi_extractor import *
  31. from .ssd_head import *
  32. from .fcos_head import *
  33. from .solov2_head import *
  34. from .ttf_head import *
  35. from .cascade_head import *
  36. from .face_head import *
  37. from .s2anet_head import *
  38. from .keypoint_hrhrnet_head import *
  39. from .centernet_head import *