[c1b1c5]: / ViTPose / mmpose / utils / __init__.py

Download this file

10 lines (8 with data), 285 Bytes

1
2
3
4
5
6
7
8
9
# Copyright (c) OpenMMLab. All rights reserved.
from .collect_env import collect_env
from .logger import get_root_logger
from .setup_env import setup_multi_processes
from .timer import StopWatch
__all__ = [
'get_root_logger', 'collect_env', 'StopWatch', 'setup_multi_processes'
]