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
percentile was added to the tensorlib backends in PR #817 but there was outstanding issues with both PyTorch and JAX that required some nuance.
PyTorch is missing interpolation methods as of v1.10.1:
I've checked in again on pytorch/pytorch#59397 (comment) but I'm not really sure if we'll see this an interpolation option in torch in v1.10.1, so we might want to implement raise not implemented errors for the time being so that PR #817 can finally move forward. :/
* Add percentile function to the tensor backends
* Add tests for percentile and its interpolation methods
- JAX requires additional dtype support with the 'linear' interpolation method
c.f. jax-ml/jax#8513
- PyTorch has yet to implement interpolation method options
- c.f. #1693
percentile
was added to the tensorlib backends in PR #817 but there was outstanding issues with both PyTorch and JAX that required some nuance.v1.10.1
:Originally posted by @matthewfeickert in #815 (comment)
jax.numpy.percentile
with linear interpolation betweenv0.2.20
andv0.2.21
jax-ml/jax#8513Both these Issues should be monitored in the future so that they can hopefully be resolved along the way to a patch release.
The text was updated successfully, but these errors were encountered: