Spaces:
Sleeping
Sleeping
File size: 325 Bytes
749745d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
from maskrcnn_benchmark import _C
try:
import torchvision
from torchvision.ops import nms
except:
nms = _C.nms
ml_nms = _C.ml_nms
soft_nms = _C.soft_nms
# nms.__doc__ = """
# This function performs Non-maximum suppresion"""
|