dtoolkit.pipeline.Pipeline.predict_proba#
- Pipeline.predict_proba(X, **predict_proba_params)#
Transform the data, and apply predict_proba with the final estimator.
Call transform of each transformer in the pipeline. The transformed data are finally passed to the final estimator that calls predict_proba method. Only valid if the final estimator implements predict_proba.
- Parameters
- Xiterable
Data to predict on. Must fulfill input requirements of first step of the pipeline.
- **predict_proba_paramsdict of string -> object
Parameters to the predict_proba called at the end of all transformations in the pipeline.
- Returns
- y_probandarray of shape (n_samples, n_classes)
Result of calling predict_proba on the final estimator.