mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
10 lines
339 B
Python
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']
|