Hyperparameters
Hyperparameter |
Type/Values |
Default |
||
|---|---|---|---|---|
estimator |
<sklearn.BaseEstimator> |
Stree() |
Base estimator used to build each element of the ensemble. |
|
n_jobs |
<int> |
-1 |
Specifies the number of threads used to build the ensemble (-1 equals to all cores available) |
|
random_state |
<int> |
None |
Controls the pseudo random number generation for shuffling the data for probability estimates. Ignored when probability is False. |
|
max_features |
<int>, <float> |
None |
The number of features to consider in each tree: |
|
max_samples |
<int>, <float> |
None |
The number of samples to consider for bootstrap: |
|
n_estimators |
<int> |
100 |
The number of trees the ensemble is going to build |
|
be_hyperparams |
<str> |
“{}” |
Hyperparameteres passed to the base estimator, i.e. “{"C": 17, "kernel": "rbf"}” |