You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks @oilyraisin for your comment, we'll take care of it very soon.
More generally, we are in the process of updating the code to make it compliant with the latest versions of JAX.
Can't use kwargs x and y, which are positional only for jax>=0.4.28. (or so my computer tells me)
e.g.
jnp.where(array==array, x=True, y=False)
should be
jnp.where(array==array, True, False)
The text was updated successfully, but these errors were encountered: