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
Thank you for your work! The output mask shape is 4x256x256 where 4 is (I guess) the number of labels and 256x256 is mask's height x width dimensions. I wonder how to get 1x256x256 mask from the output?
The text was updated successfully, but these errors were encountered:
you are performing (mask[0, 0] > 0).detach().cpu().numpy() on 1 x 4 x 256 x 256 matrix which means that first only 256 x 256 returns ignoring the rest, is it background mask?
Thank you for your work! The output mask shape is 4x256x256 where 4 is (I guess) the number of labels and 256x256 is mask's height x width dimensions. I wonder how to get 1x256x256 mask from the output?
The text was updated successfully, but these errors were encountered: