-
I often use
Is there some way of doing something like this? |
Beta Was this translation helpful? Give feedback.
Answered by
sharadmv
Mar 22, 2023
Replies: 1 comment 1 reply
-
Try adding the line |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
HHalva
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try adding the line
import jax.numpy as jnp
right before you run the breakpoint. I'd also suggest usingnumpy
notjax.numpy
if you're on an accelerator, since the breakpoint uses NumPy arrays, not JAX arrays.