cvms 0.3.0
-
cross_validate_fn()is added. Cross-validate custom model functions. -
Breaking change: In
evaluate(), whentypeismultinomial, the output is now a single tibble. TheClass Level Resultsare included as a nested tibble. -
Breaking change: In
baseline(),lmermodels are now fitted withREML = FALSEby default. -
Adds
REMLargument tobaseline(). -
Bug fix: the
controlargument incross_validate()was not being used. Now it is. -
In
cross_validate(), the model is no longer fitted twice when a warning is thrown during fitting. -
Adds
metricsargument tocross_validate()andvalidate(). Allows enabling the regularAccuracymetric
inbinomialor to disable metrics (will currently still be computed but not included in the output). -
AICcis now computed with theMuMInpackage instead of theAICcmodavgpackage, which
is no longer a dependency. -
Adds
lifecyclebadges to the function documentation.