Estimator predictions for X. Interface with the predict method of the estimator. Args: X: The samples to be predicted. **predict_kwargs: Keyword arguments to be passed to the predict method of the estimator. Returns: Estimator prediction
(self, X: modALinput, **predict_kwargs)
| 127 | pass |
| 128 | |
| 129 | def predict(self, X: modALinput, **predict_kwargs) -> Any: |
| 130 | """ |
| 131 | Estimator predictions for X. Interface with the predict method of the estimator. |
| 132 | |
| 133 | Args: |
| 134 | X: The samples to be predicted. |
| 135 | **predict_kwargs: Keyword arguments to be passed to the predict method of the estimator. |
| 136 | |
| 137 | Returns: |
| 138 | Estimator predictions for X. |
| 139 | """ |
| 140 | return self.estimator.predict(X, **predict_kwargs) |
| 141 | |
| 142 | def predict_proba(self, X: modALinput, **predict_proba_kwargs) -> Any: |
| 143 | """ |
no outgoing calls
no test coverage detected