Is it possible to extract some predictions from the .workflow object in following way:
workflow_result %>% pull_workflow_fit() %>% .$fit %>% .$predictions
I assumed that these are the class probabilities calculated on the training dataset, but I am not sure.
Do you know what prediction information the .workflow object contains? Is it OOB prediction?
Thank you.