__init__.py 250 Bytes
Newer Older
Kai Chen's avatar
Kai Chen committed
1
from .env import init_dist, get_root_logger, set_random_seed
myownskyW7's avatar
myownskyW7 committed
2
3
4
from .train import train_detector
from .inference import inference_detector

Kai Chen's avatar
Kai Chen committed
5
6
7
8
__all__ = [
    'init_dist', 'get_root_logger', 'set_random_seed', 'train_detector',
    'inference_detector'
]