mmsegmentation/mmseg/ops/__init__.py

6 lines
212 B
Python
Raw Normal View History

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