__init__.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 vgg
  15. from . import resnet
  16. from . import darknet
  17. from . import mobilenet_v1
  18. from . import mobilenet_v3
  19. from . import hrnet
  20. from . import lite_hrnet
  21. from . import blazenet
  22. from . import ghostnet
  23. from . import senet
  24. from . import res2net
  25. from . import dla
  26. from . import shufflenet_v2
  27. from . import swin_transformer
  28. from . import lcnet
  29. from . import hardnet
  30. from . import esnet
  31. from . import cspresnet
  32. from . import csp_darknet
  33. from .vgg import *
  34. from .resnet import *
  35. from .darknet import *
  36. from .mobilenet_v1 import *
  37. from .mobilenet_v3 import *
  38. from .hrnet import *
  39. from .lite_hrnet import *
  40. from .blazenet import *
  41. from .ghostnet import *
  42. from .senet import *
  43. from .res2net import *
  44. from .dla import *
  45. from .shufflenet_v2 import *
  46. from .swin_transformer import *
  47. from .lcnet import *
  48. from .hardnet import *
  49. from .esnet import *
  50. from .cspresnet import *
  51. from .csp_darknet import *