-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
RockeyCoss
committed
Jan 10, 2022
1 parent
9d30260
commit a912e33
Showing
3 changed files
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Copyright (c) OpenMMLab. All rights reserved. | ||
from .collect_env import collect_env | ||
from .find_latest_checkpoint import find_latest_checkpoint | ||
from .logger import get_root_logger | ||
from .misc import find_latest_checkpoint | ||
|
||
__all__ = ['get_root_logger', 'collect_env', 'find_latest_checkpoint'] |
File renamed without changes.
1 change: 1 addition & 0 deletions
1
...est_utiils/test_find_latest_checkpoint.py → tests/test_utils/test_misc.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# Copyright (c) OpenMMLab. All rights reserved. | ||
import os.path as osp | ||
import tempfile | ||
|
||
|