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:

  • GridSearch,
  • RandomSearch.

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:

  • what are those interactions?
  • how can I find such interactions and visualize them (e.g., in a graph) using R?
  • Examples online are welcomed.

    More Nikolaos Tziokas's questions See All
    Similar questions and discussions