10 Star 55 Fork 34

MindSpore/graphlearning

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mindspore_gl.nn.GATConv.rst 2.19 KB
一键复制 编辑 原始数据 按行查看 历史
luojianing 提交于 2023-04-19 16:30 . add ` for values in docs

mindspore_gl.nn.GATConv

.. py:class:: mindspore_gl.nn.GATConv(in_feat_size: int, out_size: int, num_attn_head: int, input_drop_out_rate: float = 0.0, attn_drop_out_rate: float = 0.0, leaky_relu_slope: float = 0.2, activation=None, add_norm=False)

    图Attention网络。来自论文 `Graph Attention Network <https://arxiv.org/pdf/1710.10903.pdf>`_ 。

    .. math::
        h_i^{(l+1)} = \sum_{j\in \mathcal{N}(i)} \alpha_{i,j} W^{(l)} h_j^{(l)}

    :math:`\alpha_{i, j}` 表示节点 :math:`i` 和节点 :math:`j` 之间的attention分数。

    .. math::
        \alpha_{ij}^{l} = \mathrm{softmax_i} (e_{ij}^{l}) \\
        e_{ij}^{l} = \mathrm{LeakyReLU}\left(\vec{a}^T [W h_{i} \| W h_{j}]\right)

    参数:
        - **in_feat_size** (int) - 输入节点特征大小。
        - **out_size** (int) - 输出节点特征大小。
        - **num_attn_head** (int) - GAT中使用的attention头数。
        - **input_drop_out_rate** (float, 可选) - 输入丢弃的dropout rate。默认值:``0.0``。
        - **attn_drop_out_rate** (float, 可选) - attention丢弃的dropout rate。默认值:``0.0``。
        - **leaky_relu_slope** (float, 可选) - leaky relu的斜率。默认值:``0.2``。
        - **activation** (Cell, 可选) - 激活函数,默认值:``None``。
        - **add_norm** (bool, 可选) - 边信息是否需要归一化。默认值:``False``。

    输入:
        - **x** (Tensor) - 输入节点特征。Shape为 :math:`(N,D_{in})`
          其中 :math:`N` 是节点数, :math:`D_{in}` 可以是任何shape。
        - **g** (Graph) - 输入图。

    输出:
        - Tensor,输出特征Shape为 :math:`(N,D_{out})` ,其中 :math:`D_{out}` 应等于 :math:`D_{in} * num\_attn\_head` 。

    异常:
        - **TypeError** - 如果 `in_feat_size` 、 `out_size` 或 `num_attn_head` 不是int。
        - **TypeError** - 如果 `input_drop_out_rate` 、 `attn_drop_out_rate` 或 `leaky_relu_slope` 不是float。
        - **TypeError** - 如果 `activation` 不是 `mindspore.nn.Cell`。
        - **ValueError** - 如果 `input_drop_out_rate` 或 `attn_drop_out_rate` 不在范围[0.0, 1.0)内。
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mindspore/graphlearning.git
git@gitee.com:mindspore/graphlearning.git
mindspore
graphlearning
graphlearning
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385