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>
97 行
3.5 KiB
Python
97 行
3.5 KiB
Python
"""Torch Module for DenseSAGEConv"""
|
|
# pylint: disable= no-member, arguments-differ, invalid-name
|
|
from torch import nn
|
|
from ....utils import check_eq_shape
|
|
|
|
|
|
class DenseSAGEConv(nn.Module):
|
|
"""GraphSAGE layer where the graph structure is given by an
|
|
adjacency matrix.
|
|
We recommend to use this module when appying GraphSAGE on dense graphs.
|
|
|
|
Note that we only support gcn aggregator in DenseSAGEConv.
|
|
|
|
Parameters
|
|
----------
|
|
in_feats : int
|
|
Input feature size.
|
|
out_feats : int
|
|
Output feature size.
|
|
feat_drop : float, optional
|
|
Dropout rate on features. Default: 0.
|
|
bias : bool
|
|
If True, adds a learnable bias to the output. Default: ``True``.
|
|
norm : callable activation function/layer or None, optional
|
|
If not None, applies normalization to the updated node features.
|
|
activation : callable activation function/layer or None, optional
|
|
If not None, applies an activation function to the updated node features.
|
|
Default: ``None``.
|
|
|
|
See also
|
|
--------
|
|
SAGEConv
|
|
"""
|
|
def __init__(self,
|
|
in_feats,
|
|
out_feats,
|
|
feat_drop=0.,
|
|
bias=True,
|
|
norm=None,
|
|
activation=None):
|
|
super(DenseSAGEConv, self).__init__()
|
|
self._in_feats = in_feats
|
|
self._out_feats = out_feats
|
|
self._norm = norm
|
|
self.feat_drop = nn.Dropout(feat_drop)
|
|
self.activation = activation
|
|
self.fc = nn.Linear(in_feats, out_feats, bias=bias)
|
|
self.reset_parameters()
|
|
|
|
def reset_parameters(self):
|
|
"""Reinitialize learnable parameters."""
|
|
gain = nn.init.calculate_gain('relu')
|
|
nn.init.xavier_uniform_(self.fc.weight, gain=gain)
|
|
|
|
def forward(self, adj, feat):
|
|
r"""Compute (Dense) Graph SAGE layer.
|
|
|
|
Parameters
|
|
----------
|
|
adj : torch.Tensor
|
|
The adjacency matrix of the graph to apply SAGE Convolution on, when
|
|
applied to a unidirectional bipartite graph, ``adj`` should be of shape
|
|
should be of shape :math:`(N_{out}, N_{in})`; when applied to a homo
|
|
graph, ``adj`` should be of shape :math:`(N, N)`. In both cases,
|
|
a row represents a destination node while a column represents a source
|
|
node.
|
|
feat : torch.Tensor or a 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})` and :math:`(N_{out}, D_{in})`.
|
|
|
|
Returns
|
|
-------
|
|
torch.Tensor
|
|
The output feature of shape :math:`(N, D_{out})` where :math:`D_{out}`
|
|
is size of output feature.
|
|
"""
|
|
check_eq_shape(feat)
|
|
if isinstance(feat, tuple):
|
|
feat_src = self.feat_drop(feat[0])
|
|
feat_dst = self.feat_drop(feat[1])
|
|
else:
|
|
feat_src = feat_dst = self.feat_drop(feat)
|
|
adj = adj.float().to(feat_src.device)
|
|
in_degrees = adj.sum(dim=1, keepdim=True)
|
|
h_neigh = (adj @ feat_src + feat_dst) / (in_degrees + 1)
|
|
rst = self.fc(h_neigh)
|
|
# activation
|
|
if self.activation is not None:
|
|
rst = self.activation(rst)
|
|
# normalization
|
|
if self._norm is not None:
|
|
rst = self._norm(rst)
|
|
|
|
return rst
|