(self, g, h)
| 257 | return {"score": self.W2(F.relu(self.W1(h))).squeeze(1)} |
| 258 | |
| 259 | def forward(self, g, h): |
| 260 | with g.local_scope(): |
| 261 | g.ndata["h"] = h |
| 262 | g.apply_edges(self.apply_edges) |
| 263 | return g.edata["score"] |
| 264 | |
| 265 | |
| 266 | ###################################################################### |
nothing calls this directly
no test coverage detected