tf.keras.ops.arcsinh

Inverse hyperbolic sine, element-wise.

x Input tensor.

Output tensor of same shape as x.

Example:

x = keras.ops.convert_to_tensor([1, -1, 0])
keras.ops.arcsinh(x)
array([0.88137364, -0.88137364, 0.0], dtype=float32)