Time series regression#
The skpro.regression module contains algorithms and composition tools for probabilistic supervised regression,
i.e., tabular regression estimator with a probabilistic prediction mode.
All regressors in skpro can be listed using the skpro.registry.all_objects utility,
using object_types="regressor_proba", optionally filtered by tags.
Valid tags can be listed using skpro.registry.all_tags.
Composition#
|
Pipeline for probabilistic supervised regression. |
Model selection and tuning#
|
Perform grid-search cross-validation to find optimal model parameters. |
|
Perform randomized-search cross-validation to find optimal model parameters. |
|
Evaluate estimator using re-sample folds. |
Reduction - adding predict_proba#
This section lists reduction algorithms that
take one or multiple sklearn estimators and adda probabilistic prediction mode.
|
Bootstrap ensemble of a tabular regressor. |
|
Residual double regressor. |
Base#
|
Base class for probabilistic supervised regressors. |