(self, x, edge_index, edge_weigt=None, batch=None)
| 273 | return loss |
| 274 | |
| 275 | def embed(self, x, edge_index, edge_weigt=None, batch=None): |
| 276 | |
| 277 | return self.encoder(x, edge_index, edge_weigt, batch) |
| 278 | |
| 279 | class TextModel(nn.Module): |
| 280 | def __init__(self, encoder): |
nothing calls this directly
no outgoing calls
no test coverage detected