print_fit_results.Rd
`print_fit_results` is a wrapper function for printing a summary of the model fit from models that were trained using caret, tidymodels, or h2o backends. This wrapper function provides uniformity of input arguments to easily switch between the different modeling packages.
print_fit_results(
fit_list,
test_set = FALSE,
use = NULL,
html = knitr::is_html_output()
)
List of fitted models for which to make predictions. Typically the output of `fit_models()`.
Logical indicating whether or not this evaluation is for the test set. If `FALSE`, output is assumed to be associated with validation set.
One of "caret", "h2o", "tidymodels", indicating the modeling
package to use. If NULL
(default), the modeling package is inferred
from the fit.
Logical indicating whether the output should be in html format.
If FALSE
, output is in latex format.
Print fit summary to the console.
Other print_fit_family:
print_fit