mindspore.ops.Tanh
- class mindspore.ops.Tanh[源代码]
逐元素计算输入元素的双曲正切。
更多参考详见
mindspore.ops.tanh()
。- 支持平台:
Ascend
GPU
CPU
样例:
>>> input_x = Tensor(np.array([1, 2, 3, 4, 5]), mindspore.float32) >>> tanh = ops.Tanh() >>> output = tanh(input_x) >>> print(output) [0.7615941 0.9640276 0.9950547 0.9993293 0.9999092]