(self, dim, K, alpha, **kwargs)
| 26 | class APPNPConv(conv.Conv): |
| 27 | |
| 28 | def __init__(self, dim, K, alpha, **kwargs): |
| 29 | super(APPNPConv, self).__init__(aggr='add', **kwargs) |
| 30 | self.K = K |
| 31 | self.alpha = alpha |
| 32 | |
| 33 | @staticmethod |
| 34 | def norm(edge_index, size): |
nothing calls this directly
no outgoing calls
no test coverage detected