The integer level to exclude from binary classification or multiclass problems.
By default no classes are excluded, as the greedy optimizer requires all classes because it cannot
use negative coefficients.
tuneLength
The size of the grid to search for tuning the model. Defaults to 1, as
the only parameter to optimize is the number of iterations, and the default of 100 works well.
greedyMSE works well when you want an ensemble that will never be worse than any
single model in the dataset. In the worst case scenario, it will select the single
best model, if none of them can be ensembled to improve the overall score. It will
also never assign any model a negative coefficient, which can help avoid
unintuitive cases at prediction time (e.g. if the correlations between
predictors breaks down on new data, negative coefficients can lead to bad results).