dmlc--dgl
565f0c88fc
* refactor graph conv * docs & tests * fix lint * fix lint * fix lint * fix lint script * fix lint * Update * Style fix * Fix style * Fix style * Fix gpu case * Fix for gpu case * Hotfix edgesoftmax docs * Handle repeated features * Add docstring * Set default arguments * Remove dropout from nn.conv * Fix * add util fn for renaming * revert gcn_spmv.py * mx folder * fix wierd bug * fix mx * fix lint
41 行
1.2 KiB
Python
41 行
1.2 KiB
Python
"""GCN using DGL nn package
|
|
|
|
References:
|
|
- Semi-Supervised Classification with Graph Convolutional Networks
|
|
- Paper: https://arxiv.org/abs/1609.02907
|
|
- Code: https://github.com/tkipf/gcn
|
|
"""
|
|
import mxnet as mx
|
|
from mxnet import gluon
|
|
import dgl
|
|
from dgl.nn.mxnet import GraphConv
|
|
|
|
class GCN(gluon.Block):
|
|
def __init__(self,
|
|
g,
|
|
in_feats,
|
|
n_hidden,
|
|
n_classes,
|
|
n_layers,
|
|
activation,
|
|
dropout):
|
|
super(GCN, self).__init__()
|
|
self.g = g
|
|
self.layers = gluon.nn.Sequential()
|
|
# input layer
|
|
self.layers.add(GraphConv(in_feats, n_hidden, activation=activation))
|
|
# hidden layers
|
|
for i in range(n_layers - 1):
|
|
self.layers.add(GraphConv(n_hidden, n_hidden, activation=activation))
|
|
# output layer
|
|
self.layers.add(GraphConv(n_hidden, n_classes))
|
|
self.dropout = gluon.nn.Dropout(rate=dropout)
|
|
|
|
def forward(self, features):
|
|
h = features
|
|
for i, layer in enumerate(self.layers):
|
|
if i != 0:
|
|
h = self.dropout(h)
|
|
h = layer(h, self.g)
|
|
return h
|