We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ryansherby/ViperMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
nms.py•361 B
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
import torch
from viper.src.base_models.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"""