Skip to content

Commit

Permalink
fix: rename score_threshold into score_thresh in config (autoware…
Browse files Browse the repository at this point in the history
  • Loading branch information
ktro2828 authored Jan 17, 2024
1 parent f78ea59 commit bc1751e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion perception/tensorrt_yolo/config/yolov3.param.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
num_anchors: 3
anchors: [116.0, 90.0, 156.0, 198.0, 373.0, 326.0, 30.0, 61.0, 62.0, 45.0, 59.0, 119.0, 10.0, 13.0, 16.0, 30.0, 33.0, 23.0]
scale_x_y: [1.0, 1.0, 1.0]
score_threshold: 0.1
score_thresh: 0.1
iou_thresh: 0.45
detections_per_im: 100
use_darknet_layer: true
Expand Down
2 changes: 1 addition & 1 deletion perception/tensorrt_yolo/config/yolov4-tiny.param.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
num_anchors: 3
anchors: [81.0, 82.0, 135.0, 169.0, 344.0, 319.0, 23.0, 27.0, 37.0, 58.0, 81.0, 82.0]
scale_x_y: [1.05, 1.05]
score_threshold: 0.1
score_thresh: 0.1
iou_thresh: 0.45
detections_per_im: 100
use_darknet_layer: true
Expand Down
2 changes: 1 addition & 1 deletion perception/tensorrt_yolo/config/yolov4.param.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
num_anchors: 3
anchors: [12.0, 16.0, 19.0, 36.0, 40.0, 28.0, 36.0, 75.0, 76.0, 55.0, 72.0, 146.0, 142.0, 110.0, 192.0, 243.0, 459.0, 401.0]
scale_x_y: [1.2, 1.1, 1.05]
score_threshold: 0.1
score_thresh: 0.1
iou_thresh: 0.45
detections_per_im: 100
use_darknet_layer: true
Expand Down
2 changes: 1 addition & 1 deletion perception/tensorrt_yolo/config/yolov5l.param.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
num_anchors: 3
anchors: [10.0, 13.0, 16.0, 30.0, 33.0, 23.0, 30.0, 61.0, 62.0, 45.0, 59.0, 119.0, 116.0, 90.0, 156.0, 198.0, 373.0, 326.0]
scale_x_y: [1.0, 1.0, 1.0]
score_threshold: 0.1
score_thresh: 0.1
iou_thresh: 0.45
detections_per_im: 100
use_darknet_layer: false
Expand Down
2 changes: 1 addition & 1 deletion perception/tensorrt_yolo/config/yolov5m.param.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
num_anchors: 3
anchors: [10.0, 13.0, 16.0, 30.0, 33.0, 23.0, 30.0, 61.0, 62.0, 45.0, 59.0, 119.0, 116.0, 90.0, 156.0, 198.0, 373.0, 326.0]
scale_x_y: [1.0, 1.0, 1.0]
score_threshold: 0.1
score_thresh: 0.1
iou_thresh: 0.45
detections_per_im: 100
use_darknet_layer: false
Expand Down
2 changes: 1 addition & 1 deletion perception/tensorrt_yolo/config/yolov5s.param.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
num_anchors: 3
anchors: [10.0, 13.0, 16.0, 30.0, 33.0, 23.0, 30.0, 61.0, 62.0, 45.0, 59.0, 119.0, 116.0, 90.0, 156.0, 198.0, 373.0, 326.0]
scale_x_y: [1.0, 1.0, 1.0]
score_threshold: 0.1
score_thresh: 0.1
iou_thresh: 0.45
detections_per_im: 100
use_darknet_layer: false
Expand Down
2 changes: 1 addition & 1 deletion perception/tensorrt_yolo/config/yolov5x.param.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
num_anchors: 3
anchors: [10.0, 13.0, 16.0, 30.0, 33.0, 23.0, 30.0, 61.0, 62.0, 45.0, 59.0, 119.0, 116.0, 90.0, 156.0, 198.0, 373.0, 326.0]
scale_x_y: [1.0, 1.0, 1.0]
score_threshold: 0.1
score_thresh: 0.1
iou_thresh: 0.45
detections_per_im: 100
use_darknet_layer: false
Expand Down

0 comments on commit bc1751e

Please sign in to comment.