"examples/pytorch/vscode:/vscode.git/clone" did not exist on "6963d796c5f696b74d88bdda62095b449736fbdc"
Commit d5998149 authored by 许瑞's avatar 许瑞
Browse files

fix: error return typo

parent 8193128f
...@@ -64,7 +64,7 @@ def _remove_overlap_between_bboxes(arr): ...@@ -64,7 +64,7 @@ def _remove_overlap_between_bboxes(arr):
else: else:
if v["score"] > res[i]["score"]: if v["score"] > res[i]["score"]:
keeps[i] = False keeps[i] = False
res[i] = False res[i] = None
else: else:
keeps[idx] = False keeps[idx] = False
drop_reasons.append(drop_reasons) drop_reasons.append(drop_reasons)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment