(self, callback_func=None)
| 14 | |
| 15 | class Stream(transformers.StoppingCriteria): |
| 16 | def __init__(self, callback_func=None): |
| 17 | self.callback_func = callback_func |
| 18 | |
| 19 | def __call__(self, input_ids, scores) -> bool: |
| 20 | if self.callback_func is not None: |
nothing calls this directly
no outgoing calls
no test coverage detected