View source on GitHub |
Inverse hyperbolic sine, element-wise.
tf.keras.ops.arcsinh(
x
)
Arguments | |
---|---|
x
|
Input tensor. |
Returns | |
---|---|
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)