__init__.py 631 Bytes
Newer Older
dingchang's avatar
dingchang committed
1
# Copyright (c) OpenMMLab. All rights reserved.
2
from .inference import (convert_SyncBN, inference_detector,
3
                        inference_mono_3d_detector,
4
5
                        inference_multi_modality_detector, inference_segmentor,
                        init_model, show_result_meshlab)
liyinhao's avatar
liyinhao committed
6
from .test import single_gpu_test
7
from .train import init_random_seed, train_model
liyinhao's avatar
liyinhao committed
8

wuyuefeng's avatar
Demo  
wuyuefeng committed
9
__all__ = [
10
    'inference_detector', 'init_model', 'single_gpu_test',
11
    'inference_mono_3d_detector', 'show_result_meshlab', 'convert_SyncBN',
12
13
    'train_model', 'inference_multi_modality_detector', 'inference_segmentor',
    'init_random_seed'
wuyuefeng's avatar
Demo  
wuyuefeng committed
14
]