Skip to content

Commit 24d7c05

Browse files
committed
style(log): ssd
1 parent 2498ed1 commit 24d7c05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: py/ssd/utils/box_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def assign_priors(gt_boxes, gt_labels, corner_form_priors,
104104
# best_prior_per_target_index:每个标注框对应最高IoU的先验框下标
105105
best_prior_per_target, best_prior_per_target_index = ious.max(0)
106106

107-
# 再一次确保标注框与最高IoU的先验框匹配
107+
# 确保标注框与最高IoU的先验框匹配
108108
for target_index, prior_index in enumerate(best_prior_per_target_index):
109109
best_target_per_prior_index[prior_index] = target_index
110110

0 commit comments

Comments
 (0)