(self, indexes)
| 37 | self.linear = nn.Linear(embedding.size(1), num_class, bias=True) |
| 38 | |
| 39 | def forward(self, indexes): |
| 40 | x = self.embeddings(indexes) |
| 41 | x = self.linear(x) |
| 42 | return x |
| 43 | |
| 44 | |
| 45 | class LinkPredictor(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected