Fix documentation for a misspelled parameter (#2569)
This commit is contained in:
parent
0e06d1805d
commit
03e213c7cd
@ -103,7 +103,7 @@ Parameters for Tree Booster
|
||||
- 'lossguide': split at nodes with highest loss change.
|
||||
* max_leaves, [default=0]
|
||||
- Maximum number of nodes to be added. Only relevant for the 'lossguide' grow policy.
|
||||
* max_bins, [default=256]
|
||||
* max_bin, [default=256]
|
||||
- This is only used if 'hist' is specified as `tree_method`.
|
||||
- Maximum number of discrete bins to bucket continuous features.
|
||||
- Increasing this number improves the optimality of splits at the cost of higher computation time.
|
||||
|
||||
@ -222,7 +222,7 @@ public class BoosterImplTest {
|
||||
put("tree_method", "hist");
|
||||
put("grow_policy", "lossguide");
|
||||
put("max_leaves", 8);
|
||||
put("max_bins", 16);
|
||||
put("max_bin", 16);
|
||||
put("eval_metric", "auc");
|
||||
}
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user