google / uncertainty-baselines

High-quality implementations of standard and SOTA methods on a variety of tasks.
Apache License 2.0
1.45k stars 202 forks source link

[JAX] Replace uses of `jnp.array` in types with `jnp.ndarray`. #1309

Closed copybara-service[bot] closed 1 year ago

copybara-service[bot] commented 1 year ago

[JAX] Replace uses of jnp.array in types with jnp.ndarray.

jnp.array is a function, not a type: https://jax.readthedocs.io/en/latest/_autosummary/jax.numpy.array.html so it never makes sense to use jnp.array in a type annotation.

Presumably the intent was to write jnp.ndarray aka jax.Array. Change uses of jnp.array to jnp.ndarray.