Skip to content

Commit

Permalink
change nms thresholds on cpu only code
Browse files Browse the repository at this point in the history
  • Loading branch information
rod409 committed Jan 21, 2025
1 parent b63ca20 commit dbf6eb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions automotive/3d-object-detection/model/pointpillars_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,9 +470,9 @@ class PointPillarsPos(nn.Module):
def __init__(self, nclasses=3):
super().__init__()
self.nclasses = nclasses
self.nms_thr = 0.01
self.nms_thr = 0.25
self.score_thr = 0.1
self.max_num = 50
self.max_num = 500

def nms_filter(self, bbox_pred, bbox_cls_pred, bbox_dir_cls_pred):
# 3. nms
Expand Down

0 comments on commit dbf6eb4

Please sign in to comment.