In R, I am using the randomForest and caret packages for a Random Forest (RF) regression task. Genarally, there are two options when fine-tuning a model:
I have seen on various posts that GridSearch has limitations such as taht there are intangibles that cannot be addressed in a gridsearch, such as parameter interaction stabilizes at a slower rate than error so Bootstrap replicates should be adjusted not just on error but also based on number and complexity of parameters included in the model.
My questions are:
Examples online are welcomed.