mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* move layer_decay_optimizer_constructor * fix * fix * merge test_core * fix * add DeprecationWarning * fix DeprecationWarning * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix test * fix * fix * fix * fix * fix ut * fix * fix * Update tests/test_core/test_layer_decay_optimizer_constructor.py * fix * fix * fix * fix Co-authored-by: MeowZheng <meowzheng@outlook.com> Co-authored-by: Miao Zheng <76149310+MeowZheng@users.noreply.github.com>
12 lines
420 B
Python
12 lines
420 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
from .builder import (OPTIMIZER_BUILDERS, build_optimizer,
|
|
build_optimizer_constructor)
|
|
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__ = [
|
|
'OPTIMIZER_BUILDERS', 'build_optimizer', 'build_optimizer_constructor'
|
|
]
|