Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add small details to parameters docs #9900

Merged
merged 1 commit into from
Dec 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doc/parameter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Parameters for Tree Booster

* ``gamma`` [default=0, alias: ``min_split_loss``]

- Minimum loss reduction required to make a further partition on a leaf node of the tree. The larger ``gamma`` is, the more conservative the algorithm will be.
- Minimum loss reduction required to make a further partition on a leaf node of the tree. The larger ``gamma`` is, the more conservative the algorithm will be. Note that a tree where no splits were made might still contain a single terminal node with a non-zero score.
- range: [0,∞]

* ``max_depth`` [default=6]
Expand Down Expand Up @@ -388,6 +388,7 @@ Specify the learning task and the corresponding learning objective. The objectiv
- The initial prediction score of all instances, global bias
- The parameter is automatically estimated for selected objectives before training. To
disable the estimation, specify a real number argument.
- If ``base_margin`` is supplied, ``base_score`` will not be added.
- For sufficient number of iterations, changing this value will not have too much effect.

* ``eval_metric`` [default according to objective]
Expand Down
Loading