Skip to content

Commit 4973b96

Browse files
committed
deprecated store_cv_values
1 parent 9b0a823 commit 4973b96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hpsklearn/components/linear_model/_ridge.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def _ridge_cv_hp_space(
121121
fit_intercept: bool = True,
122122
scoring: typing.Union[str, callable] = None,
123123
cv: typing.Union[int, Iterable, typing.Generator, Apply] = None,
124-
store_cv_values: bool = False,
124+
store_cv_results: bool = False,
125125
**kwargs
126126
):
127127
"""
@@ -134,7 +134,7 @@ def _ridge_cv_hp_space(
134134
fit_intercept=fit_intercept,
135135
scoring=scoring,
136136
cv=_ridge_cv(name_func("cv")) if cv is None else cv,
137-
store_cv_values=store_cv_values,
137+
store_cv_restults=store_cv_results,
138138
**kwargs
139139
)
140140
return hp_space

0 commit comments

Comments
 (0)