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
@kevinzakka@robotrory
In get_pixel_value, the description states that x and y are flattened tensors of shape (BxHxW,). However, in the first lines of the function, it is assumed that the input tensors are actually of the size (B,H,W,C) as shown here:
@kevinzakka @robotrory
In get_pixel_value, the description states that x and y are flattened tensors of shape (BxHxW,). However, in the first lines of the function, it is assumed that the input tensors are actually of the size (B,H,W,C) as shown here:
This creates an error as shape[1] or higher is out of bound for a flattened tensor.
What am i missing?
The text was updated successfully, but these errors were encountered: