You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 899 B

2 years ago
12345678910111213141516171819
  1. # Copyright (c) OpenMMLab. All rights reserved.
  2. from .backbones import * # noqa: F401,F403
  3. from .builder import (BACKBONES, DETECTORS, HEADS, LOSSES, NECKS,
  4. ROI_EXTRACTORS, SHARED_HEADS, build_backbone,
  5. build_detector, build_head, build_loss, build_neck,
  6. build_roi_extractor, build_shared_head)
  7. from .dense_heads import * # noqa: F401,F403
  8. from .detectors import * # noqa: F401,F403
  9. from .losses import * # noqa: F401,F403
  10. from .necks import * # noqa: F401,F403
  11. from .plugins import * # noqa: F401,F403
  12. from .roi_heads import * # noqa: F401,F403
  13. from .seg_heads import * # noqa: F401,F403
  14. __all__ = [
  15. 'BACKBONES', 'NECKS', 'ROI_EXTRACTORS', 'SHARED_HEADS', 'HEADS', 'LOSSES',
  16. 'DETECTORS', 'build_backbone', 'build_neck', 'build_roi_extractor',
  17. 'build_shared_head', 'build_head', 'build_loss', 'build_detector'
  18. ]

No Description

Contributors (2)