forked from NVIDIA/TensorRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEfficientNMSPlugin_PluginConfig.yaml
53 lines (53 loc) · 1.1 KB
/
EfficientNMSPlugin_PluginConfig.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
name: EfficientNMS_TRT
interface: "IPluginV2DynamicExt"
versions:
"1":
attributes:
- score_threshold
- iou_threshold
- max_output_boxes
- background_class
- score_activation
- box_coding
attribute_types:
score_threshold: float32
iou_threshold: float32
max_output_boxes: int32
background_class: int32
score_activation: int32
box_coding: int32
attribute_length:
score_threshold: 1
iou_threshold: 1
max_output_boxes: 1
background_class: 1
score_activation: 1
box_coding: 1
attribute_options:
score_threshold:
min: "=0"
max: "=pinf"
iou_threshold:
min: "0"
max: "=pinf"
max_output_boxes:
min: "0"
max: "=pinf"
background_class:
min: "=ninf"
max: "=pinf"
score_activation:
- 0
- 1
box_coding:
- 0
- 1
attributes_required:
- score_threshold
- iou_threshold
- max_output_boxes
- background_class
- score_activation
- box_coding
...