Skip to content

Commit b6d222d

Browse files
committed
fix docstring
1 parent 1946606 commit b6d222d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imblearn/model_selection/_split.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class InstanceHardnessCV(BaseCrossValidator):
4343
>>> ih_cv = InstanceHardnessCV(estimator)
4444
>>> cv_result = cross_validate(estimator, X, y, cv=ih_cv)
4545
>>> print(f"Standard deviation of test_scores: {cv_result['test_score'].std():.3f}")
46-
Standard deviation of test_scores: 0.007
46+
Standard deviation of test_scores: 0.00...
4747
"""
4848

4949
def __init__(self, estimator, *, n_splits=5, pos_label=None):

0 commit comments

Comments
 (0)