Hyperparameters for each machine learning algorithm (where applicable) which we explored during the gridsearch cross-validation. n_estimators is the number of trees, max_features is the number of features to consider when looking for the best split within a tree, min_samples_leaf is the minimum number of objects required to be at a leaf node, criterion is the function that measures the quality of the split, min_samples_split is the minimum number of samples required to make a split, max_depth limits the maximum depth of the trees, and learning_rate (used only in the boosted model building methods of ADA and GBT) shrinks the contribution of each classifier by the set value.
Hyperparameter Grid | |
n_estimators | 64, 128, 256, 512 |
max_features | 1, 3, None |
min_samples_leaf | 1, 3, 10 |
criterion | gini, entropy |
min_samples_split | 2, 3, 10 |
max_depth | 3, 6, 9, None |
learning_rate | 0.001, 0.01, 0.1, 0.5, 1.0 |
Hyperparameter Grid | |
n_estimators | 64, 128, 256, 512 |
max_features | 1, 3, None |
min_samples_leaf | 1, 3, 10 |
criterion | gini, entropy |
min_samples_split | 2, 3, 10 |
max_depth | 3, 6, 9, None |
learning_rate | 0.001, 0.01, 0.1, 0.5, 1.0 |
Hyperparameters for each machine learning algorithm (where applicable) which we explored during the gridsearch cross-validation. n_estimators is the number of trees, max_features is the number of features to consider when looking for the best split within a tree, min_samples_leaf is the minimum number of objects required to be at a leaf node, criterion is the function that measures the quality of the split, min_samples_split is the minimum number of samples required to make a split, max_depth limits the maximum depth of the trees, and learning_rate (used only in the boosted model building methods of ADA and GBT) shrinks the contribution of each classifier by the set value.
Hyperparameter Grid | |
n_estimators | 64, 128, 256, 512 |
max_features | 1, 3, None |
min_samples_leaf | 1, 3, 10 |
criterion | gini, entropy |
min_samples_split | 2, 3, 10 |
max_depth | 3, 6, 9, None |
learning_rate | 0.001, 0.01, 0.1, 0.5, 1.0 |
Hyperparameter Grid | |
n_estimators | 64, 128, 256, 512 |
max_features | 1, 3, None |
min_samples_leaf | 1, 3, 10 |
criterion | gini, entropy |
min_samples_split | 2, 3, 10 |
max_depth | 3, 6, 9, None |
learning_rate | 0.001, 0.01, 0.1, 0.5, 1.0 |
This PDF is available to Subscribers Only
View Article Abstract & Purchase OptionsFor full access to this pdf, sign in to an existing account, or purchase an annual subscription.