mmsegmentation/mmseg/core/__init__.py

10 lines
339 B
Python

# Copyright (c) OpenMMLab. All rights reserved.
from .builder import build_optimizer
from .data_structures import * # noqa: F401, F403
from .evaluation import * # noqa: F401, F403
from .optimizers import * # noqa: F401, F403
from .seg import * # noqa: F401, F403
from .utils import * # noqa: F401, F403
__all__ = ['build_optimizer']