Hyperparametric Tuning of XG and RFC
Hyperparametric Tuning of XG and RFC
Booster : This parameter helps us choose what booster we are going to use whither:
Gbtree: which is the default optimizer and it uses a tree-based model
Dart: like the gbtree it uses the tree-based model
Gblinear: uses a linear based model
N thread
determines the cores of computer we can use for running the model
min_impurity_decrease
A node will be split if this split induces a decrease of impurity
greater than or equal to its value.
it helps us in determining how deep our tree grows
max_features = the number of features to consider when looking for a best split.
auto , sqrt,llog2
degreeint, default=3
Degree of the polynomial kernel function (‘poly’). Ignored by all other kernels.
for hyperplane to split the data.