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
count_nonzero
We should be able to purely load data with this trick:
import dask_awkward as dak def load_columns(events, columns): for col in columns: _ = events[col] return events dak.map_partitions(load_columns, events, [("Jet", "pt"), ("Jet", "eta"), ...])
This way we avoid using unnecessary ak.count_nonzero calls in materialize_branches.ipynb
ak.count_nonzero
materialize_branches.ipynb
The text was updated successfully, but these errors were encountered:
This might also help keep memory requirements low, looks like a good setup to try out.
Sorry, something went wrong.
No branches or pull requests
We should be able to purely load data with this trick:
This way we avoid using unnecessary
ak.count_nonzero
calls inmaterialize_branches.ipynb
The text was updated successfully, but these errors were encountered: