File size: 294 Bytes
cc0dd3c
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
# 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'
]