File tree Expand file tree Collapse file tree 2 files changed +5
-12
lines changed Expand file tree Collapse file tree 2 files changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,7 @@ General Parameters
44
44
* ``validate_parameters `` [default to ``false ``, except for Python, R and CLI interface]
45
45
46
46
- When set to True, XGBoost will perform validation of input parameters to check whether
47
- a parameter is used or not. The feature is still experimental. It's expected to have
48
- some false positives.
47
+ a parameter is used or not.
49
48
50
49
* ``nthread `` [default to maximum number of threads available if not set]
51
50
@@ -233,24 +232,21 @@ Parameters for Categorical Feature
233
232
These parameters are only used for training with categorical data. See
234
233
:doc: `/tutorials/categorical ` for more information.
235
234
235
+ .. note :: These parameters are experimental. ``exact`` tree method is not yet supported.
236
+
237
+
236
238
* ``max_cat_to_onehot ``
237
239
238
240
.. versionadded :: 1.6.0
239
241
240
- .. note :: This parameter is experimental. ``exact`` tree method is not yet supported.
241
-
242
242
- A threshold for deciding whether XGBoost should use one-hot encoding based split for
243
243
categorical data. When number of categories is lesser than the threshold then one-hot
244
244
encoding is chosen, otherwise the categories will be partitioned into children nodes.
245
- Only relevant for regression and binary classification. Also, ``exact `` tree method is
246
- not supported
247
245
248
246
* ``max_cat_threshold ``
249
247
250
248
.. versionadded :: 1.7.0
251
249
252
- .. note :: This parameter is experimental. ``exact`` tree method is not yet supported.
253
-
254
250
- Maximum number of categories considered for each split. Used only by partition-based
255
251
splits for preventing over-fitting.
256
252
Original file line number Diff line number Diff line change @@ -25,9 +25,6 @@ Core Data Structure
25
25
.. autoclass :: xgboost.QuantileDMatrix
26
26
:show-inheritance:
27
27
28
- .. autoclass :: xgboost.DeviceQuantileDMatrix
29
- :show-inheritance:
30
-
31
28
.. autoclass :: xgboost.Booster
32
29
:members:
33
30
:show-inheritance:
@@ -115,7 +112,7 @@ Dask API
115
112
:inherited-members:
116
113
:show-inheritance:
117
114
118
- .. autoclass :: xgboost.dask.DaskDeviceQuantileDMatrix
115
+ .. autoclass :: xgboost.dask.DaskQuantileDMatrix
119
116
:members:
120
117
:inherited-members:
121
118
:show-inheritance:
You can’t perform that action at this time.
0 commit comments