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
As of today we can only merge tensors that have the exact same properties. Trying to merge tensors with different .projection or .distortion will raise
AssertionError: Trying to merge augmented tensor with different property: projection
Being able to merge these properties in lists would be great.
Expected return of a torch.cat((a, b, c), dim=0) with a, b & c being tensors with different projection properties:
As of today we can only merge tensors that have the exact same properties. Trying to merge tensors with different
.projection
or.distortion
will raiseBeing able to merge these properties in lists would be great.
Expected return of a
torch.cat((a, b, c), dim=0)
with a, b & c being tensors with different projection properties:The text was updated successfully, but these errors were encountered: