Internal: call . Args: *args: Variable positional arguments. **cfg: Configuration overrides.
(self, *args, **cfg)
| 428 | return model, kwargs |
| 429 | |
| 430 | def __call__(self, *args, **cfg): |
| 431 | """Internal: call . |
| 432 | |
| 433 | Args: |
| 434 | *args: Variable positional arguments. |
| 435 | **cfg: Configuration overrides. |
| 436 | """ |
| 437 | kwargs = self.kwargs |
| 438 | deep_update(kwargs, cfg) |
| 439 | res = self.model(*args, kwargs) |
| 440 | return res |
| 441 | |
| 442 | def generate(self, input, input_len=None, progress_callback=None, **cfg): |
| 443 | """Run speech recognition on input audio. |
nothing calls this directly
no test coverage detected