Skip to content

Commit

Permalink
Remove dead comment
Browse files Browse the repository at this point in the history
  • Loading branch information
laggui committed Mar 8, 2024
1 parent fa067df commit 47708a9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion yolox-burn/src/model/boxes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ pub fn nms<B: Backend>(
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.,
Expand Down

0 comments on commit 47708a9

Please sign in to comment.