2.6K Star 8.6K Fork 4.8K

GVPMindSpore/mindspore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mindspore.ops.GeLU.rst 962 Bytes
一键复制 编辑 原始数据 按行查看 历史
yangruoqi713 提交于 2023-04-21 11:21 . [OPS] modify docs & log for gelu

mindspore.ops.GeLU

.. py:class:: mindspore.ops.GeLU

    高斯误差线性单元激活函数(Gaussian Error Linear Units activation function)。

    在 `Gaussian Error Linear Units (GELUs) <https://arxiv.org/abs/1606.08415>`_ 文章中对GeLU函数进行了介绍。
    此外,也可以参考 `BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding <https://arxiv.org/abs/1810.04805>`_ 。

    GeLU函数定义如下:

    .. math::
        GELU(x_i) = x_i*P(X < x_i)

    其中  :math:`P` 是标准高斯分布的累积分布函数, :math:`x_i` 是输入的元素。

    输入:
        - **x** (Tensor) - 激活函数GeLU的输入,数据类型为float16、float32或float64。

    输出:
        Tensor,数据类型和shape与 `x` 的相同。

    异常:
        - **TypeError** - `x` 不是Tensor。
        - **TypeError** - `x` 的数据类型不是float16、float32或float64。
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mindspore/mindspore.git
git@gitee.com:mindspore/mindspore.git
mindspore
mindspore
mindspore
r2.3.1

搜索帮助