google-deepmind / dm-haiku

JAX-based neural network library
https://dm-haiku.readthedocs.io
Apache License 2.0
2.91k stars 231 forks source link

Replace uses of `jnp.array` in types with `jnp.ndarray`. #720

Closed copybara-service[bot] closed 1 year ago

copybara-service[bot] commented 1 year ago

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.