Q15Machine Learning
Question
4 marks
Explain the Random Forest algorithm. What are its advantages?
Answer
Random Forest is an ensemble method that builds multiple decision trees and merges them for a more accurate and stable prediction.
It introduces randomness by training each tree on a random subset of the data (bootstrapping) and considering a random subset of features at each split. Advantages include high accuracy, robustness to overfitting (compared to individual decision trees), and the ability to estimate feature importance automatically.