Fix documentation for a misspelled parameter (#2569)

This commit is contained in:
Philip Cho 2017-08-02 02:50:09 -07:00 committed by Rory Mitchell
parent 0e06d1805d
commit 03e213c7cd
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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");
}
};