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 get "RuntimeError: The size of tensor a (335) must match the size of tensor b (334) at non-singleton dimension 3" during testing on my own data. How to solve it?
The text was updated successfully, but these errors were encountered:
I think you tested on the images of which size are not multiple of 4.
Because of the stride in our model, you should use the input image having sizes of multiple of 4.
If necessary, you should pad an input image and remove the padded area.
Since the RealBlur dataset contains the images of which size are not multiple of 4, we also pad the input image and remove the padded area from the output image.
I get "RuntimeError: The size of tensor a (335) must match the size of tensor b (334) at non-singleton dimension 3" during testing on my own data. How to solve it?
The text was updated successfully, but these errors were encountered: