Skip to content

Commit

Permalink
enhance weak_learner_params documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
valenad1 committed Nov 22, 2023
1 parent 3e998a9 commit 5fd2b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion h2o-docs/src/product/data-science/adaboost.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Algorithm-specific parameters

- ``DEEP_LEARNING``: Trains a binary classifier with ``(epochs=10, hidden=[2])``.

- **weak_learner_params**: With ``weak_learner``, you can also specify a dict/list of customized parameters for that algorithm. For example if we use a ``GBM``, we can specify ``{'max_depth': 10}`` in Python and ``list(max_depth = 10)`` in R.
- **weak_learner_params**: With ``weak_learner``, you can also specify a dict/list of customized parameters for that algorithm. For example if we use a ``GBM``, we can specify ``{'ntrees': 1, 'max_depth': 10}`` in Python and ``list(ntrees = 1, max_depth = 10)`` in R. AdaBoost does not apply defaults from the ``weak_learner`` at all. The defaults of the algorithm itself will be used instead.

Common parameters
'''''''''''''''''
Expand Down

0 comments on commit 5fd2b30

Please sign in to comment.