(self, inputs: list[JsonDict], **kw)
| 86 | return self._output_spec |
| 87 | |
| 88 | def predict_minibatch(self, inputs: list[JsonDict], **kw): |
| 89 | return list(self.predict(inputs)) |
| 90 | |
| 91 | def predict(self, inputs: Iterable[JsonDict], **kw) -> Iterator[JsonDict]: |
| 92 | """Predict on known inputs. |