(self, input_ids: torch.LongTensor, scores: torch.FloatTensor)
| 408 | """ |
| 409 | |
| 410 | def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor) -> torch.FloatTensor: |
| 411 | for processor in self: |
| 412 | scores = processor(input_ids, scores) |
| 413 | return scores |
| 414 | |
| 415 | |
| 416 | class MinLengthLogitsProcessor(LogitsProcessor): |
nothing calls this directly
no outgoing calls
no test coverage detected