(self, dim, **kwargs)
| 26 | class GraphConv(conv.Conv): |
| 27 | |
| 28 | def __init__(self, dim, **kwargs): |
| 29 | super(GraphConv, self).__init__(aggr='mean', **kwargs) |
| 30 | self.fc = tf.layers.Dense(dim, use_bias=False) |
| 31 | self.liner = tf.layers.Dense(dim, use_bias=True) |
| 32 | |
| 33 | def __call__(self, x, edge_index, size=None, **kwargs): |
| 34 | h = [None if x[0] is None else self.fc(x[0]), |
nothing calls this directly
no outgoing calls
no test coverage detected