Skip to content

Commit

Permalink
Fix a bug occurred when training a RTMdet tiny model (#3266)
Browse files Browse the repository at this point in the history
change width and hieght order
  • Loading branch information
eunwoosh authored Apr 5, 2024
1 parent 3e9e6f8 commit 66d51f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ def mask_postprocess(
F.interpolate(
mask_logits[:, inds],
size=[
img_w,
img_h,
img_w,
],
mode="bilinear",
align_corners=False,
Expand Down

0 comments on commit 66d51f8

Please sign in to comment.