ComenzarEmpieza gratis

Generate a tuning grid

The standard hyperparameters of most models provide a good fit for most datasets. Yet, they need optimization for the best performance. Otherwise, it's like driving a car with an activated hand brake. Release the brake and tune your models!

In this exercise, you'll create two objects that serve as a starting point: a tuning grid (a set of hyperparameter combinations) and a model specification that you later train with every value of the grid.

Este ejercicio forma parte del curso

Machine Learning with Tree-Based Models in R

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

# Create a specification with tuning placeholders
tune_spec <- decision_tree(___ = ___,
                           ___ = ___) %>% 
  # Specify mode
  ___ %>% 
  # Specify engine
  ___

print(tune_spec)
Editar y ejecutar código