Learn R Programming

tidylearn (version 0.1.0)

tl_tune_grid: Tune hyperparameters for a model using grid search

Description

Tune hyperparameters for a model using grid search

Usage

tl_tune_grid(
  data,
  formula,
  method,
  param_grid,
  folds = 5,
  metric = NULL,
  maximize = NULL,
  verbose = TRUE,
  ...
)

Value

A list with the best model and tuning results

Arguments

data

A data frame containing the training data

formula

A formula specifying the model

method

The modeling method to tune

param_grid

A named list of parameter values to tune

folds

Number of cross-validation folds

metric

Metric to optimize

maximize

Logical; whether to maximize (TRUE) or minimize (FALSE) the metric

verbose

Logical; whether to print progress

...

Additional arguments passed to tl_model