mmsegmentation/mmseg/ops/__init__.py

9 lines
271 B
Python
Raw Normal View History

2020-07-07 20:52:19 +08:00
from .encoding import Encoding
2020-08-11 16:11:29 +08:00
from .inverted_residual_module import InvertedResidual
2020-07-07 20:52:19 +08:00
from .separable_conv_module import DepthwiseSeparableConvModule
from .wrappers import resize
2020-08-11 16:11:29 +08:00
__all__ = [
'resize', 'DepthwiseSeparableConvModule', 'InvertedResidual', 'Encoding'
]