spec revise: add attribute "normalize" to Paddle NMS operators. (#6290)

This commit is contained in:
cecilia peng 2021-06-22 17:34:34 +08:00 committed by GitHub
parent b68166fc3c
commit 38bb6dc874
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View File

@ -84,6 +84,16 @@ The Matrix NMS algorithm is described below:
* **Default value**: `-1` meaning to keep all classes
* **Required**: *No*
* *normalized*
* **Description**: *normalized* is a flag that indicates whether `boxes` are normalized or not.
* **Range of values**: true or false
* *true* - the box coordinates are normalized.
* *false* - the box coordinates are not normalized.
* **Type**: boolean
* **Default value**: True
* **Required**: *No*
* *decay_function*
* **Description**: decay function used to decay scores.

View File

@ -93,6 +93,16 @@ Boxes of `background_class` are skipped and thus eliminated.
* **Default value**: `-1` meaning to keep all classes.
* **Required**: *No*
* *normalized*
* **Description**: *normalized* is a flag that indicates whether `boxes` are normalized or not.
* **Range of values**: true or false
* *true* - the box coordinates are normalized.
* *false* - the box coordinates are not normalized.
* **Type**: boolean
* **Default value**: True
* **Required**: *No*
* *nms_eta*
* **Description**: eta parameter for adaptive NMS.