Skip to content

Commit

Permalink
PUBDEV-8547 - eif scoring history - add score_each_iteration and scor…
Browse files Browse the repository at this point in the history
…e_tree_interval to the documentation
  • Loading branch information
valenad1 committed Nov 9, 2023
1 parent 4394f78 commit 91868be
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
``score_each_iteration``
------------------------

- Available in: GBM, DRF, Deep Learning, GLM, GAM, PCA, GLRM, Naïve-Bayes, K-Means, XGBoost, Isolation Forest, Uplift DRF
- Available in: GBM, DRF, Deep Learning, GLM, GAM, PCA, GLRM, Naïve-Bayes, K-Means, XGBoost, Isolation Forest, Extended Isolation Forest, Uplift DRF
- Hyperparameter: no


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
``score_tree_interval``
------------------------

- Available in: GBM, DRF, XGBoost, Isolation Forest, Uplift DRF
- Available in: GBM, DRF, XGBoost, Isolation Forest, Extended Isolation Forest, Uplift DRF
- Hyperparameter: no

Description
Expand Down Expand Up @@ -84,4 +84,4 @@ Example
cars_gbm.train(x = predictors, y = response, training_frame = train, validation_frame = valid)

# print the model score every 5 trees
cars_gbm.scoring_history()
cars_gbm.scoring_history()
4 changes: 4 additions & 0 deletions h2o-docs/src/product/data-science/eif.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ Shared tree-algorithm parameters

- `ntrees <algo-params/ntrees.html>`__: Specify the number of trees. This option defaults to ``100``.

- `score_tree_interval <algo-params/score_tree_interval.html>`__: Score the model after every so many trees. This value is set to 0 (disabled) by default.

Common parameters
'''''''''''''''''

Expand All @@ -77,6 +79,8 @@ Common parameters

- `model_id <algo-params/model_id.html>`__: Specify a custom name for the model to use as a reference. By default, H2O automatically generates a destination key.

- `score_each_iteration <algo-params/score_each_iteration.html>`__: (Optional) Enable this option to score during each iteration of the model training (disabled by default).

- `seed <algo-params/seed.html>`__: 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).

- `training_frame <algo-params/training_frame.html>`__: *Required* Specify the dataset used to build the model.
Expand Down

0 comments on commit 91868be

Please sign in to comment.