mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* [Feature] add auto resume * Update mmseg/utils/find_latest_checkpoint.py Co-authored-by: Miao Zheng <76149310+MeowZheng@users.noreply.github.com> * Update mmseg/utils/find_latest_checkpoint.py Co-authored-by: Miao Zheng <76149310+MeowZheng@users.noreply.github.com> * modify docstring * Update mmseg/utils/find_latest_checkpoint.py Co-authored-by: Miao Zheng <76149310+MeowZheng@users.noreply.github.com> * add copyright Co-authored-by: Miao Zheng <76149310+MeowZheng@users.noreply.github.com>
7 lines
234 B
Python
7 lines
234 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
from .collect_env import collect_env
|
|
from .logger import get_root_logger
|
|
from .misc import find_latest_checkpoint
|
|
|
|
__all__ = ['get_root_logger', 'collect_env', 'find_latest_checkpoint']
|