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

wrong time estimation for model training #63

Closed
pplonski opened this issue Apr 20, 2020 · 1 comment
Closed

wrong time estimation for model training #63

pplonski opened this issue Apr 20, 2020 · 1 comment
Assignees
Labels
bug Something isn't working
Milestone

Comments

@pplonski
Copy link
Contributor

when running training for long time (4h) the AutoML is spending only half of the time, because it don't want to train more models because of time limits

@pplonski pplonski added the bug Something isn't working label Apr 20, 2020
@pplonski pplonski self-assigned this Apr 20, 2020
@pplonski pplonski added this to the version 0.3.0 milestone Apr 20, 2020
@pplonski pplonski added this to To do in mljar-supervised Apr 20, 2020
@pplonski
Copy link
Contributor Author

pplonski commented Apr 20, 2020

sample code to reproduce:

train = pd.read_csv("../otto/train.csv")
X_cols = [f for f in train.columns if "feat" in f]

automl = AutoML(algorithms=["Baseline", "Decision Tree", "Random Forest", "LightGBM", "Xgboost"],
                total_time_limit=4*60*60,
                tuning_mode="Sport")

automl.fit(train[X_cols], train["target"])

Data is from Kaggle Otto competition. AutoML instead use of 14400 seconds is using~7200 secons.

@pplonski pplonski changed the title wrong time estimation needed for model training wrong time estimation for model training Apr 21, 2020
@pplonski pplonski pinned this issue Apr 21, 2020
@pplonski pplonski moved this from To do to In progress in mljar-supervised Apr 21, 2020
pplonski added a commit that referenced this issue Apr 21, 2020
pplonski added a commit that referenced this issue Apr 21, 2020
@pplonski pplonski unpinned this issue Apr 22, 2020
@pplonski pplonski moved this from In progress to Done in mljar-supervised May 4, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
Development

No branches or pull requests

1 participant