Spaces:
Runtime error
Runtime error
File size: 305 Bytes
f549064 |
1 2 3 4 5 6 7 8 9 10 |
# Copyright (c) OpenMMLab. All rights reserved.
from .det_inferencer import DetInferencer
from .inference import (async_inference_detector, inference_detector,
init_detector)
__all__ = [
'init_detector', 'async_inference_detector', 'inference_detector',
'DetInferencer'
]
|