You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
629 B
16 lines
629 B
# 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'
|
|
]
|
|
|