Spaces:
Runtime error
Runtime error
File size: 306 Bytes
f549064 |
1 2 3 4 5 6 7 8 9 10 11 |
# 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'
]
|