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
Currently, numpyro assumes keys are created using jax.random.PRNGKey. This is no longer true with the flag JAX_ENABLE_CUSTOM_RNG=1. So we need to update numpyro to enable the new-style prng key. At some point, we need to change jax.random.PRNGKey (which will be deprecated in the future) to jax.random.key. For more context, see https://github.com/google/jax/blob/main/docs/jep/9263-typed-keys.md
The text was updated successfully, but these errors were encountered:
Currently, numpyro assumes keys are created using
jax.random.PRNGKey
. This is no longer true with the flagJAX_ENABLE_CUSTOM_RNG=1
. So we need to update numpyro to enable the new-style prng key. At some point, we need to changejax.random.PRNGKey
(which will be deprecated in the future) tojax.random.key
. For more context, see https://github.com/google/jax/blob/main/docs/jep/9263-typed-keys.mdThe text was updated successfully, but these errors were encountered: