From fb87df663aef5ff2b808da3ae3fff7cd5762ba12 Mon Sep 17 00:00:00 2001 From: RichardWooSJTU <37864677+RichardWooSJTU@users.noreply.github.com> Date: Thu, 21 Apr 2022 19:07:55 +0800 Subject: [PATCH] Fix nms op docs (#41792) * fix nms op doc missing default value --- python/paddle/vision/ops.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/python/paddle/vision/ops.py b/python/paddle/vision/ops.py index 8fa51df9ac1..2d60fd45614 100644 --- a/python/paddle/vision/ops.py +++ b/python/paddle/vision/ops.py @@ -1399,26 +1399,27 @@ def nms(boxes, IoU = \frac{intersection\_area(box1, box2)}{union\_area(box1, box2)} If scores are provided, input boxes will be sorted by their scores firstly. + If category_idxs and categories are provided, NMS will be performed with a batched style, which means NMS will be applied to each category respectively and results of each category will be concated and sorted by scores. + If K is provided, only the first k elements will be returned. Otherwise, all box indices sorted by scores will be returned. Args: boxes(Tensor): The input boxes data to be computed, it's a 2D-Tensor with - the shape of [num_boxes, 4] and boxes should be sorted by their - confidence scores. The data type is float32 or float64. + the shape of [num_boxes, 4]. The data type is float32 or float64. Given as [[x1, y1, x2, y2], …], (x1, y1) is the top left coordinates, and (x2, y2) is the bottom right coordinates. Their relation should be ``0 <= x1 < x2 && 0 <= y1 < y2``. - iou_threshold(float32): IoU threshold for determine overlapping boxes. Default value: 0.3. + iou_threshold(float32, optional): IoU threshold for determine overlapping boxes. Default value: 0.3. scores(Tensor, optional): Scores corresponding to boxes, it's a 1D-Tensor with - shape of [num_boxes]. The data type is float32 or float64. + shape of [num_boxes]. The data type is float32 or float64. Default: None. category_idxs(Tensor, optional): Category indices corresponding to boxes. - it's a 1D-Tensor with shape of [num_boxes]. The data type is int64. - categories(List, optional): A list of unique id of all categories. The data type is int64. + it's a 1D-Tensor with shape of [num_boxes]. The data type is int64. Default: None. + categories(List, optional): A list of unique id of all categories. The data type is int64. Default: None. top_k(int64, optional): The top K boxes who has higher score and kept by NMS preds to - consider. top_k should be smaller equal than num_boxes. + consider. top_k should be smaller equal than num_boxes. Default: None. Returns: Tensor: 1D-Tensor with the shape of [num_boxes]. Indices of boxes kept by NMS. -- GitLab