You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -19,7 +19,7 @@ Multi-threading parameter. If ***0*** then uses all available cores for multi-th
19
19
#### validation_ratio (default = 0.2)
20
20
The ratio of training observations to use for validation instead of training. The number of boosting steps is automatically tuned to minimize validation error.
21
21
22
-
#### bins (default = 100)
22
+
#### bins (default = 300)
23
23
Specifies the maximum number of bins to discretize the data into when searching for the best split. The default value works well according to empirical results. This hyperparameter is intended for reducing computational costs. Must be greater than 1.
24
24
25
25
#### verbosity (default = 0)
@@ -34,10 +34,10 @@ The maximum number of interactions allowed. A lower value may be used to reduce
34
34
#### min_observations_in_split (default = 20)
35
35
The minimum effective number of observations that a term in the model must rely on. This hyperparameter should be tuned. Larger values are more appropriate for larger datasets. Larger values result in more robust models (lower variance), potentially at the expense of increased bias.
Controls how many boosting steps a term that becomes ineligible has to remain ineligible. The default value works well according to empirical results. This hyperparameter is intended for reducing computational costs.
39
39
40
-
#### max_eligible_terms (default = 10)
40
+
#### max_eligible_terms (default = 5)
41
41
Limits 1) the number of terms already in the model that can be considered as interaction partners in a boosting step and 2) how many terms remain eligible in the next boosting step. The default value works well according to empirical results. This hyperparameter is intended for reducing computational costs.
@@ -25,7 +25,7 @@ Multi-threading parameter. If ***0*** then uses all available cores for multi-th
25
25
#### validation_ratio (default = 0.2)
26
26
The ratio of training observations to use for validation instead of training. The number of boosting steps is automatically tuned to minimize validation error.
27
27
28
-
#### bins (default = 100)
28
+
#### bins (default = 300)
29
29
Specifies the maximum number of bins to discretize the data into when searching for the best split. The default value works well according to empirical results. This hyperparameter is intended for reducing computational costs. Must be greater than 1.
30
30
31
31
#### max_interaction_level (default = 1)
@@ -37,10 +37,10 @@ The maximum number of interactions allowed. A lower value may be used to reduce
37
37
#### min_observations_in_split (default = 20)
38
38
The minimum effective number of observations that a term in the model must rely on. This hyperparameter should be tuned. Larger values are more appropriate for larger datasets. Larger values result in more robust models (lower variance), potentially at the expense of increased bias.
Controls how many boosting steps a term that becomes ineligible has to remain ineligible. The default value works well according to empirical results. This hyperparameter is intended for reducing computational costs.
42
42
43
-
#### max_eligible_terms (default = 10)
43
+
#### max_eligible_terms (default = 5)
44
44
Limits 1) the number of terms already in the model that can be considered as interaction partners in a boosting step and 2) how many terms remain eligible in the next boosting step. The default value works well according to empirical results. This hyperparameter is intended for reducing computational costs.
0 commit comments