__init__.py 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 yolo_loss
  15. from . import iou_aware_loss
  16. from . import iou_loss
  17. from . import ssd_loss
  18. from . import fcos_loss
  19. from . import solov2_loss
  20. from . import ctfocal_loss
  21. from . import keypoint_loss
  22. from . import jde_loss
  23. from . import fairmot_loss
  24. from . import gfocal_loss
  25. from . import detr_loss
  26. from . import sparsercnn_loss
  27. from . import focal_loss
  28. from . import smooth_l1_loss
  29. from . import probiou_loss
  30. from . import cot_loss
  31. from . import supcontrast
  32. from .yolo_loss import *
  33. from .iou_aware_loss import *
  34. from .iou_loss import *
  35. from .ssd_loss import *
  36. from .fcos_loss import *
  37. from .solov2_loss import *
  38. from .ctfocal_loss import *
  39. from .keypoint_loss import *
  40. from .jde_loss import *
  41. from .fairmot_loss import *
  42. from .gfocal_loss import *
  43. from .detr_loss import *
  44. from .sparsercnn_loss import *
  45. from .focal_loss import *
  46. from .smooth_l1_loss import *
  47. from .pose3d_loss import *
  48. from .probiou_loss import *
  49. from .cot_loss import *
  50. from .supcontrast import *