(self, x_j, norm)
| 331 | if self.bias is not None: torch.nn.init.zeros_(self.bias) |
| 332 | |
| 333 | def message(self, x_j, norm): |
| 334 | return norm.view(-1, 1) * x_j |
| 335 | |
| 336 | def forward( |
| 337 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected