__init__.py 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. # Copyright (c) 2021 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 utils
  15. from . import task_aligned_assigner
  16. from . import atss_assigner
  17. from . import simota_assigner
  18. from . import max_iou_assigner
  19. from . import fcosr_assigner
  20. from . import rotated_task_aligned_assigner
  21. from . import task_aligned_assigner_cr
  22. from . import uniform_assigner
  23. from .utils import *
  24. from .task_aligned_assigner import *
  25. from .atss_assigner import *
  26. from .simota_assigner import *
  27. from .max_iou_assigner import *
  28. from .fcosr_assigner import *
  29. from .rotated_task_aligned_assigner import *
  30. from .task_aligned_assigner_cr import *
  31. from .uniform_assigner import *