How the random forest algorithm works in machine learning
If you are not aware of the concepts of decision tree classifier, Please spend some time on the below articles, As you need to know how the Decision tree classifier works before you learning the working nature of the random forest algorithm. Given the training dataset with targets and features, the decision tree algorithm will come up with some set of rules. In decision tree algorithm calculating these nodes and forming the rules will happen using the information gain and gini index calculations. In random forest algorithm, Instead of using information gain or gini index for calculating the root node, the process of finding the root node and splitting the feature nodes will happen randomly.
Jun-28-2017, 03:40:17 GMT
- Technology: