__init__.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 . import convnext
  34. from . import vision_transformer
  35. from . import mobileone
  36. from . import trans_encoder
  37. from .vgg import *
  38. from .resnet import *
  39. from .darknet import *
  40. from .mobilenet_v1 import *
  41. from .mobilenet_v3 import *
  42. from .hrnet import *
  43. from .lite_hrnet import *
  44. from .blazenet import *
  45. from .ghostnet import *
  46. from .senet import *
  47. from .res2net import *
  48. from .dla import *
  49. from .shufflenet_v2 import *
  50. from .swin_transformer import *
  51. from .lcnet import *
  52. from .hardnet import *
  53. from .esnet import *
  54. from .cspresnet import *
  55. from .csp_darknet import *
  56. from .convnext import *
  57. from .vision_transformer import *
  58. from .vision_transformer import *
  59. from .mobileone import *
  60. from .trans_encoder import *