__init__.py 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 . import gfl_head
  28. from . import simota_head
  29. from . import pico_head
  30. from . import detr_head
  31. from . import sparsercnn_head
  32. from . import tood_head
  33. from . import retina_head
  34. from . import ppyoloe_head
  35. from .bbox_head import *
  36. from .mask_head import *
  37. from .yolo_head import *
  38. from .roi_extractor import *
  39. from .ssd_head import *
  40. from .fcos_head import *
  41. from .solov2_head import *
  42. from .ttf_head import *
  43. from .cascade_head import *
  44. from .face_head import *
  45. from .s2anet_head import *
  46. from .keypoint_hrhrnet_head import *
  47. from .centernet_head import *
  48. from .gfl_head import *
  49. from .simota_head import *
  50. from .pico_head import *
  51. from .detr_head import *
  52. from .sparsercnn_head import *
  53. from .tood_head import *
  54. from .retina_head import *
  55. from .ppyoloe_head import *