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
This issue is a checklist of different functions that convert Awkward Arrays to ML libraries and backwards.
Functions for rectangular arrays
Functions for irregular arrays
ak.to_raggedtensor
ak.from_raggedtensor
to_raggedtensor
from_raggedtensor
For irregular arrays, a number of functions will be created, for the most flexible and convenient use. Here are the issues opened for this task:
ak.parents_index
axis
ak.records_to_regular
[{"x": 1, "y": 2}, {"x": 3, "y": 4}]
[[1, 2], [3, 4]]
The text was updated successfully, but these errors were encountered:
maxymnaumchyk
Successfully merging a pull request may close this issue.
This issue is a checklist of different functions that convert Awkward Arrays to ML libraries and backwards.
TensorFlow library
Functions for rectangular arrays
feat: to/from TensorFlow Tensor #3292
Functions for irregular arrays
feat: to TensorFlow RaggedTensor #3210
ak.to_raggedtensor
andak.from_raggedtensor
fix: add cuda backend support for
to_raggedtensor
andfrom_raggedtensor
functions #3263PyTorch library
Functions for rectangular arrays
feat: to/from PyTorch Tensor #3259
For irregular arrays, a number of functions will be created, for the most flexible and convenient use. Here are the issues opened for this task:
ak.parents_index
withaxis
#3256ak.records_to_regular
to convert[{"x": 1, "y": 2}, {"x": 3, "y": 4}]
into[[1, 2], [3, 4]]
#3257And a useful comment by Jim: feat: to/from PyTorch JaggedTensor #3246 (review)
The text was updated successfully, but these errors were encountered: