We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi experts, I would like to know is there a way to concat 2 jagged tensors along the sparse dim? For example
j1 = jagged_tensor.JaggedTensor( values=torch.tensor([1, 2, 3, 4]), lengths=torch.tensor([3, 1]) ) j2 = jagged_tensor.JaggedTensor( values=torch.tensor([5, 6, 7]), lengths=torch.tensor([2, 1]) ) j3 = torch.ops.fbgemm.jagged_concat(j1, j2) # the concat op # expected result: expected = jagged_tensor.JaggedTensor( values=torch.tensor([1, 2, 3, 5, 6, 4, 7]), lengths=torch.tensor([5, 2]) )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi experts, I would like to know is there a way to concat 2 jagged tensors along the sparse dim?
For example
The text was updated successfully, but these errors were encountered: