Spaces:
Build error
Build error
| # Copyright (c) OpenMMLab. All rights reserved. | |
| from .backbones import * # noqa | |
| from .builder import (BACKBONES, HEADS, LOSSES, MESH_MODELS, NECKS, POSENETS, | |
| build_backbone, build_head, build_loss, build_mesh_model, | |
| build_neck, build_posenet) | |
| from .detectors import * # noqa | |
| from .heads import * # noqa | |
| from .losses import * # noqa | |
| from .necks import * # noqa | |
| from .utils import * # noqa | |
| __all__ = [ | |
| 'BACKBONES', 'HEADS', 'NECKS', 'LOSSES', 'POSENETS', 'MESH_MODELS', | |
| 'build_backbone', 'build_head', 'build_loss', 'build_posenet', | |
| 'build_neck', 'build_mesh_model' | |
| ] | |