tune 1.0.1
-
last_fit()
,fit_resamples()
,tune_grid()
, andtune_bayes()
do not automatically error if the wrong type ofcontrol
object is passed. If the passed control object is not a superset of the one that is needed, the function will still error. As an example, passingcontrol_grid()
totune_bayes()
will fail but passingcontrol_bayes()
totune_grid()
will not. (#449) -
The
collect_metrics()
method for racing objects was removed (and is now in the finetune package). -
Improved prompts related to parameter tuning. When tuning parameters are supplied that are not compatible with the given engine,
tune_*()
functions will now error. (#549) -
The
control_bayes()
got a new argumentverbose_iter
that is used to control the verbosity of the Bayesian calculations. This change means that theverbose
argument is being passed totune_grid()
to control its verbosity. -
The
control_last_fit()
function gained an argumentallow_par
that defaults toFALSE
. This change addresses failures afterlast_fit()
using modeling engines that require native serialization, and we anticipate little to no increase in time-to-fit resulting from this change. (#539, tidymodels/bonsai#52) -
show_notes()
does a better jobs of... showing notes. (#558)