mirror of
https://github.com/open-mmlab/mmclassification.git
synced 2025-06-03 21:53:55 +08:00
* feat: add reduction for neck * feat: add reduction for neck * feat: add reduction for neck * feat:add linear reduction neck * feat: add reduction neck * mod out of linearReduction as tuple * fix typo * fix unit tests * fix unit tests Co-authored-by: Ezra-Yu <18586273+Ezra-Yu@users.noreply.github.com>
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'
|
|
]
|