(self, x, edge_index, size=None, **kwargs)
| 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]), |
| 35 | None if x[1] is None else self.fc(x[1])] |
| 36 | gather_x, gather_h = self.gather_feature([x, h], edge_index) |
| 37 | out = self.apply_edge(gather_h[1]) |
| 38 | out = mp_ops.scatter_(self.aggr, out, edge_index[0], size=size[0]) |
| 39 | out = self.apply_node(out, x[0]) |
| 40 | return out |
| 41 | |
| 42 | def apply_edge(self, x_j): |
| 43 | return x_j |
nothing calls this directly
no test coverage detected