mmclassification/mmpretrain/models/necks/__init__.py

11 lines
306 B
Python
Raw Normal View History

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