[doc] Fix typo. [skip ci] (#7226)

This commit is contained in:
Jiaming Yuan 2021-09-17 11:13:49 +08:00 committed by GitHub
parent 22d56cebf1
commit 8ad7e8eeb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,9 +19,9 @@ Exact Solution
Exact means XGBoost considers all candidates from data for tree splitting, but underlying
the objective is still interpreted as a Taylor expansion.
1. ``exact``: Vanilla tree boosting tree algorithm described in `reference paper
1. ``exact``: Vanilla gradient boosting tree algorithm described in `reference paper
<http://arxiv.org/abs/1603.02754>`_. During each split finding procedure, it iterates
over every entry of input data. It's more accurate (among other greedy methods) but
over all entries of input data. It's more accurate (among other greedy methods) but
slow in computation performance. Also it doesn't support distributed training as
XGBoost employs row spliting data distribution while ``exact`` tree method works on a
sorted column format. This tree method can be used with parameter ``tree_method`` set