Spaces:
Sleeping
Sleeping
File size: 182 Bytes
186701e |
1 2 3 4 5 6 |
# Copyright (c) OpenMMLab. All rights reserved.
from .ort_nms import onnx_nms
from .trt_nms import batched_nms, efficient_nms
__all__ = ['efficient_nms', 'batched_nms', 'onnx_nms']
|