决策树C4.5算法matlab源代码(完美运行)我要分享

Decision tree C4.5 algorithm matlab source code (perfect operation)

matlab 算法 源代码 运行 决策 完美

关注次数: 250

下载次数: 4

文件大小: 2.23 kB

代码分类: 其他

开发平台: matlab

下载需要积分: 2积分

版权声明:如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

代码描述

中文说明:确切的说,C4.5不是单个的算法,而是一套算法,C4.5有许多的功能,每个功能都对应着一个算法,这些功能组合起来就形成了一套算法就是C4.5。该算法的框架从根节点开始不断得分治,递归,生长,直至得到最后的结果。根节点代表整个训练样本集,通过在每个节点对某个属性的测试验证,算法递归得将数据集分成更小的数据集.某一节点对应的子树对应着原数据集中满足某一属性测试的部分数据集.这个递归过程一直进行下去,直到某一节点对应的子树对应的数据集都属于同一个类为止.


English Description:

To be exact, C4.5 is not a single algorithm, but a set of algorithms. C4.5 has many functions, and each function corresponds to an algorithm. The combination of these functions forms a set of algorithms, which is C4.5. The framework of the algorithm starts from the root node and continues to divide and conquer, recurse and grow until the final result is obtained. The root node represents the whole training sample set. By testing and verifying a certain attribute in each node, the algorithm recursively divides the data set into smaller data sets. The subtree corresponding to a certain node corresponds to a part of the original data set that satisfies a certain attribute test, Until the data set corresponding to the subtree of a node belongs to the same class


代码预览