Is there a way to monitor progress in tune_grid
? I have 5 tune()
parameters (1 in recipe and 4 in model) and set levels
to 5 in grid_regular()
. With 10-fold cross validation I think this 31250 models to fit, but this might not be the case:
Suppose there are m tuning parameter combinations.
tune_grid()
may not require all m model/recipe fits across each resample. (source)
I'm fitting mlp()
models with the keras
engine and it shows me progress in each epoch (and a loss plot that I wish I had turned off), but I don't know the overall progress. Any thoughts about a better way to set this up to monitor?
I am attempting to run in parallel:
all_cores <- parallel::detectCores(logical = FALSE)
library(doParallel)
cl <- makePSOCKcluster(all_cores-1)
registerDoParallel(cl)