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
In aloception-oss, we have overloaded some operation of torch.tensor. For example, a mechanism allows torch.cat to concatenate multiple AugmentedTensor and theirs children, in a recursive manner.
But in the current state of the code: torch.cat works as expected with a List of AugmentedTensor as input, but not with a tuple of AugmentedTensor.
In aloception-oss, we have overloaded some operation of
torch.tensor
. For example, a mechanism allowstorch.cat
to concatenate multipleAugmentedTensor
and theirs children, in a recursive manner.But in the current state of the code:
torch.cat
works as expected with aList
ofAugmentedTensor
as input, but not with atuple
ofAugmentedTensor
.Expected output:
Current output:
The text was updated successfully, but these errors were encountered: