Slice JAX ShapedArray using indices #12435
-
Hi, I have a JAX ShapedArray, For example, X = [[[ 9, 10, 3],
Is there any efficient way to do it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
Can you say more about why you're working with |
Beta Was this translation helpful? Give feedback.
Can you say more about why you're working with
ShapedArray
objects? They are essentially just abstract descriptors that contain a shape and a dtype. They don't contain any data, so there's not really any way to "slice" them, or to reason about the values in them. Perhaps you could edit your question with a minimal executible example of the kind of thing you want to do?