11 lines
306 B
Python
11 lines
306 B
Python
|
# 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'
|
||
|
]
|