Replies: 1 comment 4 replies
-
JAX did have an experimental inverse transform at one point, but it was never fully implemented and has been removed. If you want to see how it might look, the custom jaxpr interpreter tutorial uses an |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We have the auto grad of a function; can we have the auto inverse of a function?
In this way, when we want to calculate the inverse function of
y = f(x) = sin (x ** 2 - 1 )
, we don't need to manually writex = f^(-1)(x) = sqrt(arcsin(y) + 1)
, just aninverse(f)(y)
.Beta Was this translation helpful? Give feedback.
All reactions