Greedy Search is a feature selection method used to optimize
Streamwise Regression
For each feature
Stepwise Regression
Iterate
- For each feature
, try adding to the model and retrain. - Pick the feature that has lowest error; if the penalized error improves, accept this new model.
Stagewise Regression
Iterate
- For each feature
, try adding to the model and retrain only the weight for ; in other words, fit on residual . - Pick the feature
that has lowest error. - Regress
to find scaling coefficient . - Update our model
.