Considering 5 fold cross-validation in Caret with Random Forest method, what are the properties of Random Forest built in each fold? For example in iris data set :
train_control <- trainControl(method="cv", number=5,savePredictions = TRUE)
output <- train(Species~., data=iris, trControl=train_control, method="rf")
output$results$mtry
[1] 2 3 4
Is it true that having 3 mtry values, 3 different forests are built in cross validation? how can I understand the details of each fold forest like mtry?