dmlc--dgl
af61e2fbb4
* init gat * fix * gin * 7 nn modules * rename & lint * upd * upd * fix lint * upd test * upd * lint * shape check * upd * lint * address comments * update tensorflow Co-authored-by: Quan Gan <coin2028@hotmail.com> Co-authored-by: Jinjing Zhou <VoVAllen@users.noreply.github.com> Co-authored-by: Minjie Wang <wmjlyjemaine@gmail.com>
75 行
2.5 KiB
Python
75 行
2.5 KiB
Python
"""Torch Module for Attention-based Graph Neural Network layer"""
|
|
# pylint: disable= no-member, arguments-differ, invalid-name
|
|
import torch as th
|
|
from torch import nn
|
|
from torch.nn import functional as F
|
|
|
|
from .... import function as fn
|
|
from ..softmax import edge_softmax
|
|
from ....utils import expand_as_pair
|
|
|
|
|
|
class AGNNConv(nn.Module):
|
|
r"""Attention-based Graph Neural Network layer from paper `Attention-based
|
|
Graph Neural Network for Semi-Supervised Learning
|
|
<https://arxiv.org/abs/1803.03735>`__.
|
|
|
|
.. math::
|
|
H^{l+1} = P H^{l}
|
|
|
|
where :math:`P` is computed as:
|
|
|
|
.. math::
|
|
P_{ij} = \mathrm{softmax}_i ( \beta \cdot \cos(h_i^l, h_j^l))
|
|
|
|
Parameters
|
|
----------
|
|
init_beta : float, optional
|
|
The :math:`\beta` in the formula.
|
|
learn_beta : bool, optional
|
|
If True, :math:`\beta` will be learnable parameter.
|
|
"""
|
|
def __init__(self,
|
|
init_beta=1.,
|
|
learn_beta=True):
|
|
super(AGNNConv, self).__init__()
|
|
if learn_beta:
|
|
self.beta = nn.Parameter(th.Tensor([init_beta]))
|
|
else:
|
|
self.register_buffer('beta', th.Tensor([init_beta]))
|
|
|
|
def forward(self, graph, feat):
|
|
r"""Compute AGNN layer.
|
|
|
|
Parameters
|
|
----------
|
|
graph : DGLGraph
|
|
The graph.
|
|
feat : torch.Tensor
|
|
The input feature of shape :math:`(N, *)` :math:`N` is the
|
|
number of nodes, and :math:`*` could be of any shape.
|
|
If a pair of torch.Tensor is given, the pair must contain two tensors of shape
|
|
:math:`(N_{in}, *)` and :math:`(N_{out}, *})`, the the :math:`*` in the later
|
|
tensor must equal the previous one.
|
|
|
|
Returns
|
|
-------
|
|
torch.Tensor
|
|
The output feature of shape :math:`(N, *)` where :math:`*`
|
|
should be the same as input shape.
|
|
"""
|
|
graph = graph.local_var()
|
|
|
|
feat_src, feat_dst = expand_as_pair(feat)
|
|
graph.srcdata['h'] = feat_src
|
|
graph.srcdata['norm_h'] = F.normalize(feat_src, p=2, dim=-1)
|
|
if isinstance(feat, tuple):
|
|
graph.dstdata['norm_h'] = F.normalize(feat_dst, p=2, dim=-1)
|
|
# compute cosine distance
|
|
graph.apply_edges(fn.u_dot_v('norm_h', 'norm_h', 'cos'))
|
|
cos = graph.edata.pop('cos')
|
|
e = self.beta * cos
|
|
graph.edata['p'] = edge_softmax(graph, e)
|
|
graph.update_all(fn.u_mul_e('h', 'p', 'm'), fn.sum('m', 'h'))
|
|
return graph.dstdata.pop('h')
|