Ada Boosting
Last updated
Last updated
AdaBoost (Adaptive Boosting) is an ensemble learning method that combines multiple weak learners to create a strong classifier or regressor. It works by iteratively training weak learners and adjusting the weights of misclassified instances. In our ML workflow, we support both AdaBoost for regression and classification tasks.
AdaBoost works by iteratively building a strong learner from multiple weak learners. Here's a step-by-step explanation of the process:
Initialization:
Assign equal weights to all training samples.
Set the number of weak learners (estimators) to use.
Iterative Process: For each iteration:
Train a weak learner (e.g., a decision stump) on the weighted training data.
Calculate the error rate of the weak learner.
Compute the importance (weight) of the weak learner based on its error rate.
Update the weights of the training samples:
Increase weights for misclassified samples.
Decrease weights for correctly classified samples.
Normalize the weights so they sum to 1.
Final Model:
Combine all weak learners into a strong learner.
Each weak learner's prediction is weighted by its importance.
Prediction:
For classification: The final prediction is the class with the highest weighted sum of weak learner predictions.
For regression: The final prediction is the weighted sum of weak learner predictions.
This process allows AdaBoost to focus on the hard-to-classify examples, improving the model's performance iteratively.
The AdaBoost model is initialized in the initialize_regressor
method:
Model Selection:
For continuous targets, we use AdaBoostRegressor
from scikit-learn.
For categorical targets, we use AdaBoostClassifier
from scikit-learn.
Multi-output Support:
For multiple target variables, we use MultiOutputRegressor
or MultiOutputClassifier
.
Hyperparameter Tuning:
When auto_mode
is enabled, we use RandomizedSearchCV
for automated hyperparameter tuning.
The main hyperparameters for AdaBoost include:
n_estimators
: The maximum number of estimators at which boosting is terminated.
learning_rate
: Weight applied to each classifier at each boosting iteration.
algorithm
(for classification only): The boosting algorithm to use. Can be 'SAMME' or 'SAMME.R'.
The training process is handled in the fit_regressor
method:
The method checks if we're dealing with a multi-output scenario.
It reshapes the target variable y
if necessary for consistency.
The AdaBoost model is fitted using the fit
method.
After training, the model is serialized and stored.
When auto_mode
is enabled:
A RandomizedSearchCV
object is created with the base estimator (AdaBoostRegressor or AdaBoostClassifier).
It performs a randomized search over the specified parameter distributions.
The best parameters found are saved and used for the final model.
For multiple target variables:
In regression tasks, MultiOutputRegressor
is used to wrap the AdaBoostRegressor
.
In classification tasks, MultiOutputClassifier
is used to wrap the AdaBoostClassifier
.
This allows the model to predict multiple target variables simultaneously.
Advantages:
Less prone to overfitting compared to other boosting methods
Can achieve high accuracy
Automatically handles feature selection
Works well with weak learners
Limitations:
Sensitive to noisy data and outliers
Can be computationally expensive
Prone to overfitting if the number of estimators is too large
Start with a moderate number of estimators (e.g., 50 or 100) and adjust based on performance.
Use cross-validation to find the optimal learning_rate
.
For classification tasks, experiment with both 'SAMME' and 'SAMME.R' algorithms to see which performs better.
Monitor the training error as the number of estimators increases to detect potential overfitting.
Consider using AdaBoost in combination with decision trees as weak learners for interpretable results.
By understanding these components, you can effectively use and customize the AdaBoost implementation in our ML workflow to suit your specific needs.