__init__.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 .backbones import *
  15. from .losses import *
  16. from .ann import *
  17. from .bisenet import *
  18. from .danet import *
  19. from .deeplab import *
  20. from .fast_scnn import *
  21. from .fcn import *
  22. from .gcnet import *
  23. from .ocrnet import *
  24. from .pspnet import *
  25. from .gscnn import GSCNN
  26. from .unet import UNet
  27. from .hardnet import HarDNet
  28. from .u2net import U2Net, U2Netp
  29. from .attention_unet import AttentionUNet
  30. from .unet_plusplus import UNetPlusPlus
  31. from .unet_3plus import UNet3Plus
  32. from .decoupled_segnet import DecoupledSegNet
  33. from .emanet import *
  34. from .isanet import *
  35. from .dnlnet import *
  36. from .sfnet import *
  37. from .shufflenet_slim import ShuffleNetV2