Run prediction on a list of inputs and return the outputs.
(self, inputs: Iterable[JsonDict], **kw)
| 199 | |
| 200 | @abc.abstractmethod |
| 201 | def predict(self, inputs: Iterable[JsonDict], **kw) -> Iterable[JsonDict]: |
| 202 | """Run prediction on a list of inputs and return the outputs.""" |
| 203 | pass |
| 204 | |
| 205 | |
| 206 | ModelMap = Mapping[str, Model] |
no outgoing calls
no test coverage detected