Skip to content

Commit

Permalink
Update outdated docstrings (#556)
Browse files Browse the repository at this point in the history
* Update outdated docstrings

* Update outdated docstrings
  • Loading branch information
hcho3 authored Feb 23, 2024
1 parent 48b91c3 commit 6f053ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/python/test_xgboost_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def test_xgb_multiclass_classifier(
callback,
):
# pylint: disable=too-many-locals
"""Test XGBoost with Iris data (multi-class classification)"""
"""Test XGBoost with multi-class classification problem"""
X, y = dataset
if use_categorical:
n_categorical = callback.draw(integers(min_value=1, max_value=X.shape[1]))
Expand Down Expand Up @@ -430,7 +430,7 @@ def test_xgb_multi_target_binary_classifier(
in_memory,
callback,
):
"""Test XGBoost with multi-target classification problem"""
"""Test XGBoost with multi-target binary classification problem"""
X, y = dataset
if use_categorical:
n_categorical = callback.draw(integers(min_value=1, max_value=X.shape[1]))
Expand Down Expand Up @@ -503,7 +503,7 @@ def test_xgb_multi_target_regressor(
callback,
):
# pylint: disable=too-many-locals
"""Test XGBoost with regression data"""
"""Test XGBoost with multi-target regression problem"""

if objective == "reg:squaredlogerror":
X, y = generate_data_for_squared_log_error(n_targets=n_targets)
Expand Down

0 comments on commit 6f053ff

Please sign in to comment.