Is it possible to use try-catch-handler with tidymodels-code?
error<-tryCatch({
#set.seed(123)
wflw_fit<-fit(wflw,df_train,control=control_workflow(model_ctrl))
error<-0
}, warning = function(w) {
print(w)
return(0)
}, error = function(e) {
print(e)
return(1)
})