diff --git a/python-package/xgboost/dask/__init__.py b/python-package/xgboost/dask/__init__.py index 345c7ccc990d..72cec01d2975 100644 --- a/python-package/xgboost/dask/__init__.py +++ b/python-package/xgboost/dask/__init__.py @@ -274,8 +274,13 @@ class DaskDMatrix: .. note:: - DaskDMatrix does not repartition or move data between workers. It's - the caller's responsibility to balance the data. + `DaskDMatrix` does not repartition or move data between workers. It's the + caller's responsibility to balance the data. + + .. note:: + + For aligning partitions with ranking query groups, use the + :py:class:`DaskXGBRanker` and its ``allow_group_split`` option. .. versionadded:: 1.0.0 @@ -587,7 +592,10 @@ def first_valid(results: Iterable[Optional[_MapRetT]]) -> Optional[_MapRetT]: class DaskQuantileDMatrix(DaskDMatrix): - """A dask version of :py:class:`QuantileDMatrix`.""" + """A dask version of :py:class:`QuantileDMatrix`. See :py:class:`DaskDMatrix` for + parameter documents. + + """ @_deprecate_positional_args def __init__(