-
Notifications
You must be signed in to change notification settings - Fork 42
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
Regression running tune_bayes on mars with tune 1.1.2 #720
Comments
Thanks for the issue! This is a strange one. With tune 1.1.1, I see: two_bayer_res %>% collect_metrics()
#> # A tibble: 8 × 8
#> num_terms .metric .estimator mean n std_err .config .iter
#> <int> <chr> <chr> <dbl> <int> <dbl> <chr> <int>
#> 1 2 accuracy binary 0.784 3 0.0195 Preprocessor1_Model1 0
#> 2 2 roc_auc binary 0.866 3 0.0101 Preprocessor1_Model1 0
#> 3 3 accuracy binary 0.829 3 0.0122 Preprocessor1_Model2 0
#> 4 3 roc_auc binary 0.885 3 0.0105 Preprocessor1_Model2 0
#> 5 4 accuracy binary 0.822 3 0.0174 Preprocessor1_Model3 0
#> 6 4 roc_auc binary 0.883 3 0.0116 Preprocessor1_Model3 0
#> 7 5 accuracy binary 0.819 3 0.0150 Preprocessor1_Model4 0
#> 8 5 roc_auc binary 0.883 3 0.0110 Preprocessor1_Model4 0 Note that all Given the few changes that were made in 1.1.2, this seems to be an issue with our logging previously (resolved in #682) rather than a newly introduced issue in tuning. Still need to troubleshoot what that newly surfaced issue is. |
Ah, yes. With 1.1.2, if you set The underlying issue as that the GP can't predict any possible new points. The default Lines 375 to 380 in 74854a5
Lines 584 to 591 in 74854a5
That message is passed to I think I'll wait on addressing this in favor of a refactor of |
Thank you @simonpcouch for looking into this. I have just checked, and the situation is the same in the original analysis that inspired the |
With the latest version of
tune
(1.1.2), usingtune_bayes
on amars
model raises lots of errors. No errors are raised with version 1.1.1. Here is a reprex, showing the errors with version 1.1.2.Created on 2023-09-15 with reprex v2.0.2
Session info
The text was updated successfully, but these errors were encountered: