(self, graph)
| 145 | self.mlp.nn.reset_parameters() |
| 146 | |
| 147 | def forward(self, graph): |
| 148 | if self.cache_x is None: |
| 149 | x = graph.x.contiguous() |
| 150 | self.cache_x = self.preprocessing(graph, x) |
| 151 | x = self.cache_x |
| 152 | x = self.mlp(x) |
| 153 | return F.log_softmax(x, dim=-1) |
| 154 |
nothing calls this directly
no test coverage detected