Skip to content

Commit 6911826

Browse files
committed
[doc build] [azure parallel] work-around for lack of scipy-doctest floating point comparison in dict
1 parent 4f2136f commit 6911826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sklearn/model_selection/_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1946,7 +1946,7 @@ class RandomizedSearchCV(BaseSearchCV):
19461946
>>> clf = RandomizedSearchCV(logistic, distributions, random_state=0)
19471947
>>> search = clf.fit(iris.data, iris.target)
19481948
>>> search.best_params_
1949-
{'C': np.float64(2.195), 'penalty': 'l1'}
1949+
{'C': np.float64(2.195...), 'penalty': 'l1'}
19501950
"""
19511951

19521952
_parameter_constraints: dict = {

0 commit comments

Comments
 (0)