__init__.py 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. import warnings
  15. warnings.filterwarnings(
  16. action='ignore', category=DeprecationWarning, module='ops')
  17. from . import ops
  18. from . import backbones
  19. from . import necks
  20. from . import proposal_generator
  21. from . import heads
  22. from . import losses
  23. from . import architectures
  24. from . import post_process
  25. from . import layers
  26. from . import reid
  27. from . import mot
  28. from . import transformers
  29. from . import assigners
  30. from .ops import *
  31. from .backbones import *
  32. from .necks import *
  33. from .proposal_generator import *
  34. from .heads import *
  35. from .losses import *
  36. from .architectures import *
  37. from .post_process import *
  38. from .layers import *
  39. from .reid import *
  40. from .mot import *
  41. from .transformers import *
  42. from .assigners import *