tf.keras.ops.erfinv

Computes the inverse error function of x, element-wise.

x Input tensor.

A tensor with the same dtype as x.

Example:

x = np.array([-0.5, -0.2, -0.1, 0.0, 0.3]) keras.ops.erfinv(x) array([-0.47694, -0.17914, -0.08886, 0. , 0.27246], dtype=float32)