mmpretrain/mmcls/models/necks/__init__.py

7 lines
238 B
Python

# Copyright (c) OpenMMLab. All rights reserved.
from .gap import GlobalAveragePooling
from .gem import GeneralizedMeanPooling
from .hr_fuse import HRFuseScales
__all__ = ['GlobalAveragePooling', 'GeneralizedMeanPooling', 'HRFuseScales']