mirror of
https://github.com/open-mmlab/mmpretrain.git
synced 2025-06-03 14:59:18 +08:00
* add vis lr * add doc * Update doc and rm load_json_log in analysis * Update docs * add unit tests and update docstring * fix unit-tests * Use DummyIterBasedRunner and DummyEpochBasedRunner to simulate training process. * rm function val and add judge * update docs * improve english expression * Update docs/tools/visualization.md Co-authored-by: Ma Zerun <mzr1996@163.com> * fix typo and ImageNet datasize * fix typo * update example Co-authored-by: mzr1996 <mzr1996@163.com>
6 lines
201 B
Python
6 lines
201 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
from .collect_env import collect_env
|
|
from .logger import get_root_logger, load_json_logs
|
|
|
|
__all__ = ['collect_env', 'get_root_logger', 'load_json_logs']
|