Random Forest Review
- What is random forest classification?
- Sample the dataset to multiple testsets
- Choose suitble number of features used in each testsets.
- Create a Decision Tree model with each of the testsets
- Majority vote / Aggregation from multiple models\
- How many features to select in each tree? The number close to log or sqrt of the total feature is better.
- The random feature can help to reduce the correlation between trees.