# Copyright (c) OpenMMLab. All rights reserved. | |
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__ = [ | |
'HEADS', 'NECKS', 'LOSSES', 'POSENETS', 'MESH_MODELS', | |
'build_head', 'build_loss', 'build_posenet', | |
'build_neck', 'build_mesh_model' | |
] | |