HaMeR / mmpose /models /__init__.py
geopavlakos's picture
Initial commit
d7a991a
raw
history blame
629 Bytes
# 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'
]