jax.nn.gelu#

jax.nn.gelu(x, approximate=True)[源代码]#

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

如果 approximate=False,计算逐元素函数

\[\mathrm{gelu}(x) = \frac{x}{2} \left(\mathrm{erfc} \left( \frac{-x}{\sqrt{2}} \right) \right)\]

如果 approximate=True,使用GELU的近似公式

\[\mathrm{gelu}(x) = \frac{x}{2} \left(1 + \mathrm{tanh} \left( \sqrt{\frac{2}{\pi}} \left(x + 0.044715 x^3 \right) \right) \right)\]

更多信息,请参阅高斯误差线性单元(GELUs),第2节。

参数:
  • x (ArrayLike) – 输入数组

  • approximate (bool) – 是否使用近似或精确公式。

返回类型:

Array