We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62e5866 commit 63b8f73Copy full SHA for 63b8f73
1 file changed
ISLP/models/sklearn_wrap.py
@@ -60,7 +60,7 @@ def __sklearn_tags__(self):
60
tags.estimator_type = 'classifier'
61
return tags
62
63
- def fit(self, X, y):
+ def fit(self, X, y, **fit_params):
64
"""
65
Fit a statsmodel model
66
with design matrix
@@ -185,7 +185,7 @@ def __sklearn_tags__(self):
185
tags = super().__sklearn_tags__()
186
187
188
189
190
First, select a model
191
@@ -275,7 +275,7 @@ def __init__(self,
275
self.cv = cv
276
self.scoring = scoring
277
278
279
280
281
0 commit comments