In the tune release following 1.2.1, tune's .catch_and_log(split) argument will be renamed to .catch_and_log(split_labels), and will take the format labels(split) rather than split. agua just passes that argument once here:
|
workflow <- tune::.catch_and_log( |
|
.expr = workflows::.fit_pre(workflow, training_frame), |
|
control, |
|
split, |
|
iter_msg_preprocessor, |
|
notes = out_notes |
|
) |
...and can pass it's value conditional on tune's package version.
Related to tidymodels/tune#909.
The noted release is probably at least a couple months out, so this can be ignored for now.
In the tune release following 1.2.1, tune's
.catch_and_log(split)argument will be renamed to.catch_and_log(split_labels), and will take the formatlabels(split)rather thansplit. agua just passes that argument once here:agua/R/tune.R
Lines 105 to 111 in 6a742f6
...and can pass it's value conditional on tune's package version.
Related to tidymodels/tune#909.
The noted release is probably at least a couple months out, so this can be ignored for now.