From 47708a9c16bc1221d2d83c78752bb07094d7b963 Mon Sep 17 00:00:00 2001 From: Guillaume Lagrange Date: Fri, 8 Mar 2024 11:48:06 -0500 Subject: [PATCH] Remove dead comment --- yolox-burn/src/model/boxes.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/yolox-burn/src/model/boxes.rs b/yolox-burn/src/model/boxes.rs index 29147cd..c459313 100644 --- a/yolox-burn/src/model/boxes.rs +++ b/yolox-burn/src/model/boxes.rs @@ -77,7 +77,6 @@ pub fn nms( let box_cls_score = cls_score[box_idx]; if box_cls_score >= score_threshold { let bbox = &candidate_boxes[box_idx * 4..box_idx * 4 + 4]; - // println!("Candidate {}: {:?}", box_idx, bbox); Some(BoundingBox { xmin: bbox[0] - bbox[2] / 2., ymin: bbox[1] - bbox[3] / 2.,