File size: 566 Bytes
2cd560a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# 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'
]
|