机器学习算法 --- Pruning (decision trees) & Random Forest Algorithm
一、Table for Content 在之前的文章中我们介绍了Decision Trees Agorithms,然而这个学习算法有一个很大的弊端,就是很容易出现 Overfitting ,为了解决此问题人们找到了一种方法,就是对Decision Trees 进行 Pruning(剪枝)操作。 为了提高Decision Tree Agorithm的正确率和避免overfitting,人们又尝试了对它进行集成,即使用多棵树决策,然后对于分类问题投票得出最终结果,而对于回归问题则计算平均结果。下面是几条是本篇要讲的主要内容。 Pruning (decision trees) What is Random forest algorithm? Why Random Forest algorithm? How Random Forest algorithm works? Advantages of Random Forest algorithm. Random Forest algorithm real life example. 本文主要参考一下几篇文章,有能力的读者可自行前往阅读原文: 1. Wikipedia上的 Pruning (decision trees) 和 Random Froest algorithm 。 2. Dataaspirant上的《 HOW