# No parallel processing by default
control_refit()
# Allow parallel processing and use all cores
control_refit(allow_par = TRUE, cores = -1)
# Set verbosity to show additional training information
control_refit(verbose = TRUE)
# Add additional packages used during modeling in parallel processing
# - This is useful if your namespace does not load all needed packages
# to run models.
# - An example is if I use `temporal_hierarchy()`, which depends on the `thief` package
control_refit(allow_par = TRUE, packages = "thief")
Run the code above in your browser using DataLab