Which Random Forest hyperparameters actually matter for tuning?
mediumAnswer
- : 'more is better' until returns diminish — 200-500 is a solid default. : the main lever for correlation between trees; try sqrt(d), log2(d), or 0.3-0.5*d. : control tree size; deeper trees favor bias-reduction, larger reduces variance. ='balanced' for imbalanced data. =-1 for speed.
- Skip fiddling with — is enough.
Check yourself — multiple choice
- Only matters
- , , ,
- The activation function
- Learning rate
cover most of the tuning.
#random-forest#hyperparameter-tuning
Practise Supervised Learning
215 interview questions in this topic.
Related questions
- How do you choose the regularization strength (lambda / alpha)?
- How do you choose k in k-Nearest Neighbours?
- What are the most impactful hyperparameters of a decision tree?
- How does bagging reduce variance?
- Why does Random Forest sample features at each split, not just once per tree?
- What is the out-of-bag (OOB) score in Random Forests?