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

AutoPytorch selects only Dummy model. #494

Open
shabir1 opened this issue Mar 8, 2023 · 4 comments
Open

AutoPytorch selects only Dummy model. #494

shabir1 opened this issue Mar 8, 2023 · 4 comments

Comments

@shabir1
Copy link

shabir1 commented Mar 8, 2023

I run AutoPytorch for 10 hours on a dataset with 1.5 Lac rows and 13 columns, but it was not able to find the model it selects the dummy model.

Code

model = TabularRegressionTask(
                    ensemble_size=5,
                    ensemble_nbest=5,
                    max_models_on_disc=5,
                )
model.search(
                optimize_metric='r2',
                X_train=X_train,
                y_train=y_train,
                total_walltime_limit=36000,
                memory_limit=5092,
                enable_traditional_pipeline=False
            )

Output

After 10 hours it gives me

Dummy Model

Local environment

  • Ubuntu
  • Python: 3.8
  • autopytorch:0.2
@SaleemAkhtarAngstrom
Copy link

Also getting this, not sure why

@ravinkohli
Copy link
Contributor

You'll get the dummy model in case no other configuration finished successfully. So, could you check the log file to see what is going wrong?

@SaleemAkhtarAngstrom
Copy link

Mine was a CUDA error, removed GPU access from the container I was developing in and it was fine. Also I wasn't allowing enough predict time for my dataset, changing the above two things fixed my issues

@shabir1
Copy link
Author

shabir1 commented Jun 27, 2023

Is there any option to set GPU off in AutoPytorch?

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

3 participants