Closed MassimilianoGrassiDataScience closed 1 year ago
Hello @MassimilianoGrassiDataScience
Thank you for your feedback.
The latest version of autoprognosis is 0.1.14, we fixed several bugs in the meantime.
Could you please upgrade the library using
pip install autoprognosis --force
and try again? This updates the depends as well., including hyperimpute
, which seems to trigger the issue.
Please let me know if the issue persists. Thank you!
Solved! Thanks again
I am using autoprognosis installed via pip (0.1.8). if I keep some missing values in my training dataset, the training always stops after a few seconds with this error:
This happens both if I indicate the imputers I want to be used and if I omit it. Instead, I impute missing value before using autoprognosis, it goes on without errors.
Below you see the code I use to launch the training:
ClassifierStudy(dataset= X_train, target= 'outcome', num_iter = 30, num_study_iter = 5, timeout = 600, metric = 'aucroc', study_name = 'PROVA', workspace = workspace, score_threshold= 0.65)
Any idea of what can be the issue or any suggestion to fix it?