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

The automl freezes due to an infinite loop in default mode with data from openml task190412 #782

Open
Marchlak opened this issue Oct 9, 2024 · 0 comments

Comments

@Marchlak
Copy link
Contributor

Marchlak commented Oct 9, 2024

openml_task190412.csv
Minimal code to reproduce

import pandas as pd
from supervised import AutoML
df = pd.read_csv('openml_task190412.csv')

X = df.iloc[:, :-1]
y = df.iloc[:, -1] 

automl = AutoML()

automl.fit(X,y)
@Marchlak Marchlak changed the title The automl freezes due to an infinite loop with data from openml task190412 The automl freezes due to an infinite loop in default mode with data from openml task190412 Oct 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant