mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* wandb integration * wandb integration * Update mmseg/core/hook/wandblogger_hook.py Co-authored-by: 谢昕辰 <xiexinch@outlook.com> * trying to fix circular import issue * Update mmseg/core/hook/wandblogger_hook.py docstring Try to activate the CI. * move import op in func * add comments to test_fn Co-authored-by: xiexinch <test767803@foxmail.com> Co-authored-by: 谢昕辰 <xiexinch@outlook.com>
13 lines
460 B
Python
13 lines
460 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 .hook 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'
|
|
]
|