HumanSD / mmpose /models /necks /__init__.py
liyy201912's picture
Upload folder using huggingface_hub
cc0dd3c
raw
history blame
294 Bytes
# Copyright (c) OpenMMLab. All rights reserved.
from .fmap_proc_neck import FeatureMapProcessor
from .fpn import FPN
from .gap_neck import GlobalAveragePooling
from .posewarper_neck import PoseWarperNeck
__all__ = [
'GlobalAveragePooling', 'PoseWarperNeck', 'FPN', 'FeatureMapProcessor'
]