Spaces:
Runtime error
Runtime error
File size: 323 Bytes
c310e19 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
# from ._utils import _C
from maskrcnn_benchmark import _C
# nms = _C.nms
from apex import amp
# Only valid with fp32 inputs - give AMP the hint
nms = amp.float_function(_C.nms)
# nms.__doc__ = """
# This function performs Non-maximum suppresion"""
|