Skip to content

Commit d350685

Browse files
authored
Merge pull request #669 from yazanobeidi/patch-1
Add kwargs to AutoMLRegressor init
2 parents 8896e85 + 40f78ad commit d350685

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

autosklearn/automl.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1057,6 +1057,9 @@ def predict_proba(self, X, batch_size=None, n_jobs=1):
10571057

10581058

10591059
class AutoMLRegressor(BaseAutoML):
1060+
def __init__(self, *args, **kwargs):
1061+
super().__init__(*args, **kwargs)
1062+
10601063
def fit(
10611064
self,
10621065
X: np.ndarray,

0 commit comments

Comments
 (0)