Skip to content

Commit 4398f4d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7f158b2 commit 4398f4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

monai/data/box_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,7 @@ def box_giou(boxes1: NdarrayOrTensor, boxes2: NdarrayOrTensor) -> NdarrayOrTenso
891891

892892
# we do computation with compute_dtype to avoid overflow
893893
box_dtype = boxes1_t.dtype
894-
894+
895895
inter, union = _box_inter_union(boxes1_t, boxes2_t, compute_dtype=COMPUTE_DTYPE)
896896
iou = inter / (union + torch.finfo(COMPUTE_DTYPE).eps) # (N,M)
897897

0 commit comments

Comments
 (0)