Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the ensemble_size == 0 error in automl.py #1369

Merged
merged 9 commits into from
Feb 16, 2022
Prev Previous commit
Next Next commit
Update autosklearn/automl.py
  • Loading branch information
eddiebergman authored Feb 16, 2022
commit 2407cc07981fdcb78bcdf8be80cc35775b78aa57
2 changes: 1 addition & 1 deletion autosklearn/automl.py
Original file line number Diff line number Diff line change
Expand Up @@ -1075,7 +1075,7 @@ def fit(

return self

def __sklearn_is_fitted__(self)->bool:
def __sklearn_is_fitted__(self) -> bool:
return self.fitted

def _fit_cleanup(self):
Expand Down