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
The amount of L1 regularization applied. Default to None. Can't be set in "normal_equation" mode. If unset, value 0 is used.
44
+
l2_reg (float, default 0.0):
45
+
The amount of L2 regularization applied. Default to 0.
46
+
max_iterations (int, default 20):
47
+
The maximum number of training iterations or steps. Default to 20.
48
+
warm_start (bool, default False):
49
+
Determines whether to train a model with new training data, new model options, or both. Unless you explicitly override them, the initial options used to train the model are used for the warm start run. Default to False.
50
+
learn_rate (float or None, default None):
51
+
The learn rate for gradient descent when learn_rate_strategy='constant'. If unset, value 0.1 is used. If learn_rate_strategy='line_search', an error is returned.
52
+
learn_rate_strategy (str, default "line_search"):
53
+
The strategy for specifying the learning rate during training. Default to "line_search".
54
+
tol (float, default 0.01):
55
+
The minimum relative loss improvement that is necessary to continue training when EARLY_STOP is set to true. For example, a value of 0.01 specifies that each iteration must reduce the loss by 1% for training to continue. Default to 0.01.
56
+
ls_init_learn_rate (float or None, default None):
57
+
Sets the initial learning rate that learn_rate_strategy='line_search' uses. This option can only be used if line_search is specified. If unset, value 0.1 is used.
58
+
calculate_p_values (bool, default False):
59
+
Specifies whether to compute p-values and standard errors during training. Default to False.
60
+
enable_global_explain (bool, default False):
61
+
Whether to compute global explanations using explainable AI to evaluate global feature importance to the model. Default to False.
0 commit comments