SKLearner Home | About | Contact | Examples

Configure AdaBoostRegressor "random_state" Parameter

The random_state parameter in scikit-learn’s AdaBoostRegressor controls the random number generation for the ensemble’s base estimators.

AdaBoost (Adaptive Boosting) is an ensemble learning method that combines multiple weak learners to create a strong predictor. The random_state parameter ensures reproducibility in the random processes involved in building the ensemble.

Setting random_state to a fixed integer allows you to reproduce the same results across different runs. This is crucial for debugging, comparing models, and ensuring consistent behavior in production environments.

The default value for random_state is None, which means the random number generator is the RandomState instance used by np.random. In practice, any integer value can be used to set a specific random state.

from sklearn.datasets import make_regression
from sklearn.model_selection import train_test_split
from sklearn.ensemble import AdaBoostRegressor
from sklearn.metrics import mean_squared_error

# Generate synthetic dataset
X, y = make_regression(n_samples=1000, n_features=20, noise=0.1, random_state=42)

# Split into train and test sets
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)

# Train with different random_state values
random_state_values = [None, 42, 100, 200]
mse_scores = []

for rs in random_state_values:
    ada = AdaBoostRegressor(random_state=rs)
    ada.fit(X_train, y_train)
    y_pred = ada.predict(X_test)
    mse = mean_squared_error(y_test, y_pred)
    mse_scores.append(mse)
    print(f"random_state={rs}, MSE: {mse:.3f}")

Running the example gives an output like:

random_state=None, MSE: 9861.345
random_state=42, MSE: 10253.657
random_state=100, MSE: 10392.158
random_state=200, MSE: 10150.854

The key steps in this example are:

  1. Generate a synthetic regression dataset
  2. Split the data into train and test sets
  3. Train AdaBoostRegressor models with different random_state values
  4. Evaluate the Mean Squared Error (MSE) of each model on the test set

Some tips for using random_state:

Issues to consider:



See Also