Skip to content

Commit

Permalink
multi_label always true for val_onnx (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
KSGulin authored Oct 20, 2022
1 parent 656953a commit 6bf3a87
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion val_onnx.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,10 @@ def run(

# Inference
out = yolo_pipeline(
images=[im.numpy()], iou_thres=iou_thres, conf_thres=conf_thres
images=[im.numpy()],
iou_thres=iou_thres,
conf_thres=conf_thres,
multi_label=True
)

# inference, loss outputs
Expand Down

0 comments on commit 6bf3a87

Please sign in to comment.