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
Copy file name to clipboardExpand all lines: h2o-docs/src/product/data-science/algo-params/control_variables.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,9 @@ To get the unrestricted model with its own metrics use ``glm.make_unrestricted_g
21
21
22
22
The control variables' coefficients are set to zero in the variable importance table. Use the unrestricted model to get the variable importance table with all variables included.
23
23
24
-
If you set up the ``control_variables`` together with the ``remove_offset_effects`` feature, model metrics and scoring history are calculated with both effects enabled.
25
-
If you need to get a model with only one feature enabled, you can get it using ``glm.make_derived_glm_model(remove_control_variables_effects=True)`` or ``glm.make_derived_glm_model(remove_offset_effects=True)``
26
-
If both features are enabled and ``score_each_iteration=True`` or ``generate_scoring_history=True``, the training the model with big data can be slowed down. The complexity is four times higher than the standard GLM metric calculation.
24
+
If you set up the ``control_variables`` together with the ``remove_offset_effects`` feature, model metrics and scoring history are calculated with both features enabled (that is, with both offset and control-variable effects removed during scoring).
25
+
If you need to get a model with only one feature enabled, you can get it using ``glm.make_derived_glm_model(remove_control_variables_effects=True)`` or ``glm.make_derived_glm_model(remove_offset_effects=True)``.
26
+
If both features are enabled and ``score_each_iteration=True`` or ``generate_scoring_history=True``, training the model on big data can be slowed down. The complexity is four times higher than the standard GLM metric calculation.
Copy file name to clipboardExpand all lines: h2o-docs/src/product/data-science/algo-params/remove_offset_effects.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,9 @@ Model metrics and scoring history are calculated for both the restricted model (
13
13
14
14
To get the unrestricted model with its own metrics use ``glm.make_unrestricted_glm_model()`` / ``h2o.make_unrestricted_glm_model(glm)``.
15
15
16
-
If you set up the ``remove_offset_effects`` together with the ``control_variables`` feature, model metrics and scoring history are calculated with both effects enabled.
17
-
If you need to get a model with only one feature enabled, you can get it using ``glm.make_derived_glm_model(remove_control_variables_effects=True)`` or ``glm.make_derived_glm_model(remove_offset_effects=True)``
18
-
If both features are enabled and ``score_each_iteration=True`` or ``generate_scoring_history=True``, the training the model with big data can be slowed down. The complexity is four times higher than the standard GLM metric calculation.
16
+
If you set up the ``remove_offset_effects`` together with the ``control_variables`` model metrics and scoring history are calculated with both features enabled (that is, with both offset and control-variable effects removed during scoring).
17
+
If you need to get a model with only one feature enabled, you can get it using ``glm.make_derived_glm_model(remove_control_variables_effects=True)`` or ``glm.make_derived_glm_model(remove_offset_effects=True)``.
18
+
If both features are enabled and ``score_each_iteration=True`` or ``generate_scoring_history=True``, training the model on big data can be slowed down. The complexity is four times higher than the standard GLM metric calculation.
0 commit comments