KyanChen's picture
init
f549064
raw
history blame contribute delete
306 Bytes
# 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'
]