mindspore.ops.Atanh
- class mindspore.ops.Atanh[source]
Computes inverse hyperbolic tangent of the input element-wise.
Warning
This is an experimental prototype that is subject to change and/or deletion.
Refer to
mindspore.ops.atanh()
for more detail.- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> x = Tensor(np.array([0, -0.5]), mindspore.float32) >>> atanh = ops.Atanh() >>> output = atanh(x) >>> print(output) [ 0. -0.54930615]