8000 MNT Fix doctest dict value (#31340) · scikit-learn/scikit-learn@acb3833 · GitHub
[go: up one dir, main page]

Skip to content

Commit acb3833

Browse files
authored
MNT Fix doctest dict value (#31340)
1 parent aa21650 commit acb3833

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
@@ -1936,7 +1936,7 @@ class RandomizedSearchCV(BaseSearchCV):
19361936
>>> clf = RandomizedSearchCV(logistic, distributions, random_state=0)
19371937
>>> search = clf.fit(iris.data, iris.target)
19381938
>>> search.best_params_
1939-
{'C': np.float64(2.2), 'penalty': 'l1'}
1939+
{'C': np.float64(2.195), 'penalty': 'l1'}
19401940
"""
19411941

19421942
_parameter_constraints: dict = {

0 commit comments

Comments
 (0)
0