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>
162 行
6.7 KiB
Python
162 行
6.7 KiB
Python
"""Torch modules for graph attention networks(GAT)."""
|
|
# pylint: disable= no-member, arguments-differ, invalid-name
|
|
import torch as th
|
|
from torch import nn
|
|
|
|
from .... import function as fn
|
|
from ..softmax import edge_softmax
|
|
from ..utils import Identity
|
|
from ....utils import expand_as_pair
|
|
|
|
# pylint: enable=W0235
|
|
class GATConv(nn.Module):
|
|
r"""Apply `Graph Attention Network <https://arxiv.org/pdf/1710.10903.pdf>`__
|
|
over an input signal.
|
|
|
|
.. math::
|
|
h_i^{(l+1)} = \sum_{j\in \mathcal{N}(i)} \alpha_{i,j} W^{(l)} h_j^{(l)}
|
|
|
|
where :math:`\alpha_{ij}` is the attention score bewteen node :math:`i` and
|
|
node :math:`j`:
|
|
|
|
.. 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)
|
|
|
|
Parameters
|
|
----------
|
|
in_feats : int, or pair of ints
|
|
Input feature size.
|
|
|
|
If the layer is to be applied to a unidirectional bipartite graph, ``in_feats``
|
|
specifies the input feature size on both the source and destination nodes. If
|
|
a scalar is given, the source and destination node feature size would take the
|
|
same value.
|
|
out_feats : int
|
|
Output feature size.
|
|
num_heads : int
|
|
Number of heads in Multi-Head Attention.
|
|
feat_drop : float, optional
|
|
Dropout rate on feature, defaults: ``0``.
|
|
attn_drop : float, optional
|
|
Dropout rate on attention weight, defaults: ``0``.
|
|
negative_slope : float, optional
|
|
LeakyReLU angle of negative slope.
|
|
residual : bool, optional
|
|
If True, use residual connection.
|
|
activation : callable activation function/layer or None, optional.
|
|
If not None, applies an activation function to the updated node features.
|
|
Default: ``None``.
|
|
"""
|
|
def __init__(self,
|
|
in_feats,
|
|
out_feats,
|
|
num_heads,
|
|
feat_drop=0.,
|
|
attn_drop=0.,
|
|
negative_slope=0.2,
|
|
residual=False,
|
|
activation=None):
|
|
super(GATConv, self).__init__()
|
|
self._num_heads = num_heads
|
|
self._in_src_feats, self._in_dst_feats = expand_as_pair(in_feats)
|
|
self._out_feats = out_feats
|
|
if isinstance(in_feats, tuple):
|
|
self.fc_src = nn.Linear(
|
|
self._in_src_feats, out_feats * num_heads, bias=False)
|
|
self.fc_dst = nn.Linear(
|
|
self._in_dst_feats, out_feats * num_heads, bias=False)
|
|
else:
|
|
self.fc = nn.Linear(
|
|
self._in_src_feats, out_feats * num_heads, bias=False)
|
|
self.attn_l = nn.Parameter(th.FloatTensor(size=(1, num_heads, out_feats)))
|
|
self.attn_r = nn.Parameter(th.FloatTensor(size=(1, num_heads, out_feats)))
|
|
self.feat_drop = nn.Dropout(feat_drop)
|
|
self.attn_drop = nn.Dropout(attn_drop)
|
|
self.leaky_relu = nn.LeakyReLU(negative_slope)
|
|
if residual:
|
|
if self._in_dst_feats != out_feats:
|
|
self.res_fc = nn.Linear(
|
|
self._in_dst_feats, num_heads * out_feats, bias=False)
|
|
else:
|
|
self.res_fc = Identity()
|
|
else:
|
|
self.register_buffer('res_fc', None)
|
|
self.reset_parameters()
|
|
self.activation = activation
|
|
|
|
def reset_parameters(self):
|
|
"""Reinitialize learnable parameters."""
|
|
gain = nn.init.calculate_gain('relu')
|
|
if hasattr(self, 'fc'):
|
|
nn.init.xavier_normal_(self.fc.weight, gain=gain)
|
|
else: # bipartite graph neural networks
|
|
nn.init.xavier_normal_(self.fc_src.weight, gain=gain)
|
|
nn.init.xavier_normal_(self.fc_dst.weight, gain=gain)
|
|
nn.init.xavier_normal_(self.attn_l, gain=gain)
|
|
nn.init.xavier_normal_(self.attn_r, gain=gain)
|
|
if isinstance(self.res_fc, nn.Linear):
|
|
nn.init.xavier_normal_(self.res_fc.weight, gain=gain)
|
|
|
|
def forward(self, graph, feat):
|
|
r"""Compute graph attention network layer.
|
|
|
|
Parameters
|
|
----------
|
|
graph : DGLGraph
|
|
The graph.
|
|
feat : torch.Tensor or pair of torch.Tensor
|
|
If a torch.Tensor is given, the input feature of shape :math:`(N, D_{in})` where
|
|
:math:`D_{in}` is size of input feature, :math:`N` is the number of nodes.
|
|
If a pair of torch.Tensor is given, the pair must contain two tensors of shape
|
|
:math:`(N_{in}, D_{in_{src}})` and :math:`(N_{out}, D_{in_{dst}})`.
|
|
|
|
Returns
|
|
-------
|
|
torch.Tensor
|
|
The output feature of shape :math:`(N, H, D_{out})` where :math:`H`
|
|
is the number of heads, and :math:`D_{out}` is size of output feature.
|
|
"""
|
|
graph = graph.local_var()
|
|
if isinstance(feat, tuple):
|
|
h_src = self.feat_drop(feat[0])
|
|
h_dst = self.feat_drop(feat[1])
|
|
feat_src = self.fc_src(h_src).view(-1, self._num_heads, self._out_feats)
|
|
feat_dst = self.fc_dst(h_dst).view(-1, self._num_heads, self._out_feats)
|
|
else:
|
|
h_src = h_dst = self.feat_drop(feat)
|
|
feat_src = feat_dst = self.fc(h_src).view(
|
|
-1, self._num_heads, self._out_feats)
|
|
# NOTE: GAT paper uses "first concatenation then linear projection"
|
|
# to compute attention scores, while ours is "first projection then
|
|
# addition", the two approaches are mathematically equivalent:
|
|
# We decompose the weight vector a mentioned in the paper into
|
|
# [a_l || a_r], then
|
|
# a^T [Wh_i || Wh_j] = a_l Wh_i + a_r Wh_j
|
|
# Our implementation is much efficient because we do not need to
|
|
# save [Wh_i || Wh_j] on edges, which is not memory-efficient. Plus,
|
|
# addition could be optimized with DGL's built-in function u_add_v,
|
|
# which further speeds up computation and saves memory footprint.
|
|
el = (feat_src * self.attn_l).sum(dim=-1).unsqueeze(-1)
|
|
er = (feat_dst * self.attn_r).sum(dim=-1).unsqueeze(-1)
|
|
graph.srcdata.update({'ft': feat_src, 'el': el})
|
|
graph.dstdata.update({'er': er})
|
|
# compute edge attention, el and er are a_l Wh_i and a_r Wh_j respectively.
|
|
graph.apply_edges(fn.u_add_v('el', 'er', 'e'))
|
|
e = self.leaky_relu(graph.edata.pop('e'))
|
|
# compute softmax
|
|
graph.edata['a'] = self.attn_drop(edge_softmax(graph, e))
|
|
# message passing
|
|
graph.update_all(fn.u_mul_e('ft', 'a', 'm'),
|
|
fn.sum('m', 'ft'))
|
|
rst = graph.dstdata['ft']
|
|
# residual
|
|
if self.res_fc is not None:
|
|
resval = self.res_fc(h_dst).view(h_dst.shape[0], -1, self._out_feats)
|
|
rst = rst + resval
|
|
# activation
|
|
if self.activation:
|
|
rst = self.activation(rst)
|
|
return rst
|