mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* [fix] register optimizer onstructor with mmseg * fix lint * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * Update tests/test_core/test_optimizer.py * Update tests/test_core/test_optimizer.py * Update tests/test_core/test_optimizer.py * Update tests/test_core/test_optimizer.py * fix lint Co-authored-by: Miao Zheng <76149310+MeowZheng@users.noreply.github.com>
14 lines
510 B
Python
14 lines
510 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 .layer_decay_optimizer_constructor import \
|
|
LayerDecayOptimizerConstructor # noqa: F401
|
|
from .seg import * # noqa: F401, F403
|
|
from .utils import * # noqa: F401, F403
|
|
|
|
__all__ = [
|
|
'LayerDecayOptimizerConstructor', 'OPTIMIZER_BUILDERS', 'build_optimizer',
|
|
'build_optimizer_constructor'
|
|
]
|