You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got problem with detections if image width and height is not equal.
This fix solve my problem
valid_WH = paddle.to_tensor([h, w]).astype(dtype) -> valid_WH = paddle.to_tensor([w, h]).astype(dtype)
The text was updated successfully, but these errors were encountered:
PaddleDetection/ppdet/modeling/transformers/rtdetr_transformer.py
Line 498 in 4877a75
I got problem with detections if image width and height is not equal.
This fix solve my problem
valid_WH = paddle.to_tensor([h, w]).astype(dtype) -> valid_WH = paddle.to_tensor([w, h]).astype(dtype)
The text was updated successfully, but these errors were encountered: