Auto-PyTorch icon indicating copy to clipboard operation
Auto-PyTorch copied to clipboard

AutoPytorch selects only Dummy model.

Open shabir1 opened this issue 1 year ago • 4 comments

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

shabir1 avatar Mar 08 '23 07:03 shabir1

Also getting this, not sure why

SaleemAkhtarAngstrom avatar Mar 10 '23 17:03 SaleemAkhtarAngstrom

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?

ravinkohli avatar Mar 16 '23 13:03 ravinkohli

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

SaleemAkhtarAngstrom avatar Mar 23 '23 12:03 SaleemAkhtarAngstrom

Is there any option to set GPU off in AutoPytorch?

shabir1 avatar Jun 27 '23 09:06 shabir1