(self, input: Input, *args, **kwargs)
| 263 | return {}, {}, pipeline_parameters |
| 264 | |
| 265 | def _process_iterator(self, input: Input, *args, **kwargs): |
| 266 | for ele in input: |
| 267 | yield self._process_single(ele, *args, **kwargs) |
| 268 | |
| 269 | def _collate_fn(self, data): |
| 270 | return collate_fn(data, self.device) |
no test coverage detected