-
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
Extracting with tune_bayes()
results in the same .config
entry for each iteration
#715
Comments
This does appear to be a bug (i think, someone else might know why we did this) What is happening here:I started writing this when I first thought the confusion was about why When using #> 1 Bootstrap1 234 rmse standard 2.43 Preprocessor1_Model1 0
#> 2 Bootstrap1 884 rmse standard 2.40 Preprocessor1_Model2 0
#> 3 Bootstrap1 1902 rmse standard 2.34 Preprocessor1_Model3 0
#> 4 Bootstrap1 572 rmse standard 2.31 Preprocessor1_Model4 0
#> 5 Bootstrap1 1284 rmse standard 2.40 Preprocessor1_Model5 0
#> 6 Bootstrap2 234 rmse standard 3.09 Preprocessor1_Model1 0
#> 7 Bootstrap2 884 rmse standard 3.28 Preprocessor1_Model2 0
#> 8 Bootstrap2 1902 rmse standard 3.18 Preprocessor1_Model3 0
#> 9 Bootstrap2 572 rmse standard 3.28 Preprocessor1_Model4 0
#> 10 Bootstrap2 1284 rmse standard 3.25 Preprocessor1_Model5 0 5 different models were created, each fit 2 times. Once for each bootstrap. Once That initial fit is performed, a Gaussian process if fit using the previous tuning parameters, trying to find the best new choice of parameter. Once that has been selected, a new model is fit and evaluated ( #> 11 Bootstrap1 2000 rmse standard 2.40 Iter1 1
#> 12 Bootstrap2 2000 rmse standard 3.30 Iter1 1 This then continues #> 13 Bootstrap1 1903 rmse standard 2.40 Iter2 2
#> 14 Bootstrap2 1903 rmse standard 3.25 Iter2 2 and continues, until #> 15 Bootstrap1 209 rmse standard 2.44 Iter3 3
#> 16 Bootstrap2 209 rmse standard 3.07 Iter3 3 |
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue. |
Hello,
when using bayes tuning and extracting with
tune::extract_fit_engine
(s. reprex: the oob error from aranger
model),the corresponding
.config
-column of.extracts
contains always the valuePreprocessor1_Model1
for each iteration instead ofIter1, Iter2, ...
(compare the.config
-column of.metrics
).Created on 2023-09-01 with reprex v2.0.2
The text was updated successfully, but these errors were encountered: