From 38763aa4fabe2897d1babb0cfacf8b0337986c46 Mon Sep 17 00:00:00 2001 From: Jiaming Yuan Date: Mon, 9 Dec 2019 22:55:00 +0800 Subject: [PATCH] Update document for tree_method. [skip ci] (#5106) --- doc/parameter.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/parameter.rst b/doc/parameter.rst index d977a35e5..a8e7b3a86 100644 --- a/doc/parameter.rst +++ b/doc/parameter.rst @@ -105,7 +105,7 @@ Parameters for Tree Booster * ``tree_method`` string [default= ``auto``] - The tree construction algorithm used in XGBoost. See description in the `reference paper `_. - - XGBoost supports ``hist`` and ``approx`` for distributed training and only support ``approx`` for external memory version. + - XGBoost supports ``approx``, ``hist`` and ``gpu_hist`` for distributed training. Experimental support for external memory is available for ``approx`` and ``gpu_hist``. - Choices: ``auto``, ``exact``, ``approx``, ``hist``, ``gpu_hist`` - ``auto``: Use heuristic to choose the fastest method.