(self, x, edge_index, size=None, **kwargs)
| 31 | self.neigh_fc = tf.layers.Dense(dim, use_bias=False) |
| 32 | |
| 33 | def __call__(self, x, edge_index, size=None, **kwargs): |
| 34 | gather_x, = self.gather_feature([x], edge_index) |
| 35 | out = self.apply_edge(gather_x[1]) |
| 36 | out = mp_ops.scatter_(self.aggr, out, edge_index[0], size=size[0]) |
| 37 | out = self.apply_node(out, x[0]) |
| 38 | return out |
| 39 | |
| 40 | def apply_edge(self, x_j): |
| 41 | return x_j |
nothing calls this directly
no test coverage detected