(self, sequence_output)
| 513 | self.predictions = BertLMPredictionHead(config) |
| 514 | |
| 515 | def forward(self, sequence_output): |
| 516 | prediction_scores = self.predictions(sequence_output) |
| 517 | return prediction_scores |
| 518 | |
| 519 | |
| 520 | class BertOnlyNSPHead(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected