mindspore.ops.csr_atanh

mindspore.ops.csr_atanh(x: CSRTensor)[源代码]

逐元素计算输入CSRTensor的反双曲正切值。

\[out_i = \tanh^{-1}(x_{i})\]

警告

这是一个实验性API,后续可能修改或删除。

参数:
  • x (CSRTensor) - CSRTensor的shape为 \((N, *)\) ,其中 \(*\) 表示任意数量的附加维度。数据类型支持:float16、float32。

返回:

CSRTensor的数据类型与输入相同。

异常:
  • TypeError - 如果 x 不是CSRTensor。

  • TypeError - 如果 x 的数据类型不是float16或float32。

支持平台:

Ascend GPU CPU

样例:

>>> indptr = Tensor([0, 1, 2, 2], dtype=mstype.int32)
>>> indices = Tensor([3, 0], dtype=mstype.int32)
>>> values = Tensor([-1, 2], dtype=mstype.float32)
>>> shape = (3, 4)
>>> x = CSRTensor(indptr, indices, values, shape)
>>> output = ops.csr_atanh(x)
>>> print(output.values)
[-inf  nan]