File size: 807 Bytes
34d1f8b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# Copyright (c) OpenMMLab. All rights reserved.
from .array_converter import ArrayConverter, array_converter
from .collect_env import collect_env
from .compat_cfg import compat_cfg
from .misc import replace_ceph_backend
from .setup_env import register_all_modules, setup_multi_processes
from .typing_utils import (ConfigType, InstanceList, MultiConfig,
OptConfigType, OptInstanceList, OptMultiConfig,
OptSampleList, OptSamplingResultList)
__all__ = [
'collect_env', 'setup_multi_processes', 'compat_cfg',
'register_all_modules', 'array_converter', 'ArrayConverter', 'ConfigType',
'OptConfigType', 'MultiConfig', 'OptMultiConfig', 'InstanceList',
'OptInstanceList', 'OptSamplingResultList', 'replace_ceph_backend',
'OptSampleList'
]
|