HumanSD / mmpose /apis /__init__.py
liyy201912's picture
Upload folder using huggingface_hub
cc0dd3c
raw
history blame
300 Bytes
# Copyright (c) OpenMMLab. All rights reserved.
from .inference import inference_bottomup, inference_topdown, init_model
from .inferencers import MMPoseInferencer, Pose2DInferencer
__all__ = [
'init_model', 'inference_topdown', 'inference_bottomup',
'Pose2DInferencer', 'MMPoseInferencer'
]