Class probabilities if the predictor is a classifier. Interface with the predict_proba method of the classifier. Args: X: The samples for which the class probabilities are to be predicted. **predict_proba_kwargs: Keyword arguments to be passed to the predict
(self, X: modALinput, **predict_proba_kwargs)
| 140 | return self.estimator.predict(X, **predict_kwargs) |
| 141 | |
| 142 | def predict_proba(self, X: modALinput, **predict_proba_kwargs) -> Any: |
| 143 | """ |
| 144 | Class probabilities if the predictor is a classifier. Interface with the predict_proba method of the classifier. |
| 145 | |
| 146 | Args: |
| 147 | X: The samples for which the class probabilities are to be predicted. |
| 148 | **predict_proba_kwargs: Keyword arguments to be passed to the predict_proba method of the classifier. |
| 149 | |
| 150 | Returns: |
| 151 | Class probabilities for X. |
| 152 | """ |
| 153 | return self.estimator.predict_proba(X, **predict_proba_kwargs) |
| 154 | |
| 155 | def query(self, X_pool, *query_args, return_metrics: bool = False, **query_kwargs) -> Union[Tuple, modALinput]: |
| 156 | """ |
no outgoing calls
no test coverage detected