Skip to content

Commit

Permalink
Merge pull request #1291 from mikel-brostrom/pass-conf-n-iou-to-yolonas
Browse files Browse the repository at this point in the history
pass conf and iou to yolonas
  • Loading branch information
mikel-brostrom authored Feb 7, 2024
2 parents 7157d28 + ad35b38 commit 09c4f22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/detectors/yolonas.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ def __call__(self, im, augment, visualize):
with torch.no_grad():
preds = self.model.predict(
im,
iou=0.5,
conf=0.7,
iou=self.args.iou,
conf=self.args.conf,
fuse_model=False
)[0].prediction

Expand Down

0 comments on commit 09c4f22

Please sign in to comment.