Ianna Osborne

Results 156 comments of Ianna Osborne

@ikrommyd - thanks for opening an issue!

@blepabyte - Thanks for reporting it! Indeed, this looks inconsistent. I will have a look. Thanks!

> I looked a bit into it and it's pretty weird because it only hangs when generating the documentation. If you use it interactively or in a script it works...

@ikrommyd - if we use awkward 2 - is it wrong? We will not be fixing awkward 1. I don’t think we should use it as a reference. Please, check...

Thanks @jpivarski ! It definitely makes sense.

I'd say it's not a bug, but a feature request.

@Dominic-Stafford - thanks for bringing it up! In awkward 2, the boolean indexing behavior has changed to be more NumPy-consistent in spirit - but due to the jagged nature of...

@ikrommyd - NumPy requires boolean masks to match the dimensions of the axis being indexed: - x has shape (2,2). - mask has shape (2,1) → does not match axis...

@Dominic-Stafford - this is a subtle behavior change between Awkward 1.x and Awkward 2.x. **What’s happening** Example 1: slicing with itself ```python import awkward as ak test_arr = ak.Array([[True]]) test_arr[test_arr]...