2021-08-17 19:52:42 +08:00
|
|
|
# Copyright (c) OpenMMLab. All rights reserved.
|
2020-07-07 19:32:06 +08:00
|
|
|
from .gap import GlobalAveragePooling
|
2022-02-17 02:17:36 +08:00
|
|
|
from .gem import GeneralizedMeanPooling
|
2022-01-28 10:54:14 +08:00
|
|
|
from .hr_fuse import HRFuseScales
|
2022-11-04 15:44:37 +08:00
|
|
|
from .reduction import LinearReduction
|
2020-07-07 19:32:06 +08:00
|
|
|
|
2022-11-04 15:44:37 +08:00
|
|
|
__all__ = [
|
|
|
|
'GlobalAveragePooling', 'GeneralizedMeanPooling', 'HRFuseScales',
|
|
|
|
'LinearReduction'
|
|
|
|
]
|