Skip to content

BaggingRegressor

Online bootstrap aggregation for regression.

For each incoming observation, each model's learn_one method is called k times where k is sampled from a Poisson distribution of parameter 1. k thus has a 36% chance of being equal to 0, a 36% chance of being equal to 1, an 18% chance of being equal to 2, a 6% chance of being equal to 3, a 1% chance of being equal to 4, etc. You can do scipy.stats.poisson(1).pmf(k) for more detailed values.

Parameters

  • model (base.Regressor)

    The regressor to bag.

  • n_models – defaults to 10

    The number of models in the ensemble.

  • seed (int) – defaults to None

    Random number generator seed for reproducibility.

Examples

In the following example three logistic regressions are bagged together. The performance is slightly better than when using a single logistic regression.

>>> from river import datasets
>>> from river import ensemble
>>> from river import evaluate
>>> from river import linear_model
>>> from river import metrics
>>> from river import optim
>>> from river import preprocessing

>>> dataset = datasets.TrumpApproval()

>>> model = preprocessing.StandardScaler()
>>> model |= ensemble.BaggingRegressor(
...     model=linear_model.LinearRegression(intercept_lr=0.1),
...     n_models=3,
...     seed=42
... )

>>> metric = metrics.MAE()

>>> evaluate.progressive_val_score(dataset, model, metric)
MAE: 0.641799

Methods

clone

Return a fresh estimator with the same parameters.

The clone has the same parameters but has not been updated with any data. This works by looking at the parameters from the class signature. Each parameter is either - recursively cloned if it's a River classes. - deep-copied via copy.deepcopy if not. If the calling object is stochastic (i.e. it accepts a seed parameter) and has not been seeded, then the clone will not be idempotent. Indeed, this method's purpose if simply to return a new instance with the same input parameters.

learn_one
predict_one

Averages the predictions of each regressor.

Parameters

  • x

References