Having reviewed the original Breiman (2001) paper as well as some other board posts, I am slightly confused with the actual procedure used by WEKAs random forest implementation. None of the sources was sufficiently elaborate, many even contradict each other.
How does it work in detail, which steps are carried out?
My understanding till now:
- For each tree a bootstrap sample of the same size as the training data is created
- Only a random subset of the available features of defined size (parameter can be chosen in WEKA) is considered for each node
- Regarding the base tree learner used I found a 2006 post stating is was a modified REPTree.
- Tree is fully grown and not pruned.
- Majority vote is applied (in case of accuracy as performance metric)
My questions:
- Is the bootstrap sampling actually used?
- Is REPTree still in use or has the algorithm been changed since then?
Clarifying these issues would help me a lot!