From bf94373de52bd774a66f9062c323b31a369b6311 Mon Sep 17 00:00:00 2001 From: Hannah Tillman Date: Thu, 24 Oct 2024 11:48:00 -0500 Subject: [PATCH] ht/requetsed changed rd.3 --- h2o-docs/src/product/data-science/hglm.rst | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/h2o-docs/src/product/data-science/hglm.rst b/h2o-docs/src/product/data-science/hglm.rst index ec9ea62597e8..1a98e63ad3ca 100644 --- a/h2o-docs/src/product/data-science/hglm.rst +++ b/h2o-docs/src/product/data-science/hglm.rst @@ -33,7 +33,7 @@ where: - :math:`\varepsilon_{ij} \sim N(0, \delta_e^2)`; - :math:`u_{ij} \sim N(0, \delta_u^2)`: - :math:`\varepsilon_{ij}, u_{mj}` are independent; -- :math:`u_{mj}, u_{m,j}` are independent if :math:`m \neq m'`. +- :math:`u_{mj}, u_{m^{'}j}` are independent if :math:`m \neq m^{'}`. We need to solve the following parameters: :math:`\beta_{00}, \beta_{0j}, \beta_{m0}, u_{mj}, \delta_e^2, \delta_u^2`. @@ -64,7 +64,7 @@ Algorithm-specific parameters - `random_columns `__: An array of random column names from which random effects coefficients will be generated in the model building process. -- `rand_family `__: Specify the distribution of the random effects. Currently only ``rand_family=["gaussisan"]`` is supported. +- `rand_family `__: Specify the distribution of the random effects. Currently only ``rand_family="gaussisan"`` is supported. - **random_intercept**: If enabled, will generate a random intercept as part of the random effects coefficients (defaults to ``True``). @@ -99,8 +99,6 @@ Common parameters - `seed `__: Specify the random number generator (RNG) seed for algorithm components dependent on randomization. The seed is consistent for each H2O instance so that you can create models with the same starting conditions in alternative configurations. This option defaults to ``-1`` (time-based random number). -- `standardize `__: Specify whether to standardize the numeric columns to have a mean of zero and unit variance. Standardization is highly recommended; if you do not use standardization, the results can include components that are dominated by variables that appear to have larger variances relative to other attributes as a matter of scale, rather than true contribution. This option defaults to ``True`` (enabled). - - `training_frame `__: *Required* Specify the dataset used to build the model. **NOTE**: In Flow, if you click the **Build a model** button from the ``Parse`` cell, the training frame is entered automatically. - `validation_frame `__: Specify the dataset used to evaluate the accuracy of the model.