mindspore.ops.FastGeLU

class mindspore.ops.FastGeLU[源代码]

快速高斯误差线性单元激活函数。

更多细节详见 mindspore.ops.fast_gelu()

输入:
  • x (Tensor) - 计算FastGeLU的输入,数据类型为float16或者float32。

输出:

Tensor,其shape和数据类型和 x 相同。

支持平台:

Ascend GPU CPU

样例:

>>> x = Tensor(np.array([[-1.0, 4.0, -8.0], [2.0, -5.0, 9.0]]), mindspore.float32)
>>> fast_gelu = ops.FastGeLU()
>>> output = fast_gelu(x)
>>> print(output)
[[-1.5418735e-01  3.9921875e+00 -9.7473649e-06]
 [ 1.9375000e+00 -1.0052517e-03  8.9824219e+00]]