(
self, inputs: Iterable[JsonDict], *args, **kw
)
| 230 | return self.wrapped.supports_concurrent_predictions |
| 231 | |
| 232 | def predict( |
| 233 | self, inputs: Iterable[JsonDict], *args, **kw |
| 234 | ) -> Iterable[JsonDict]: |
| 235 | return self.wrapped.predict(inputs, *args, **kw) |
| 236 | |
| 237 | def load(self, path: str): |
| 238 | """Load a new model and wrap it with this class.""" |