决策树的优缺点

作者: FrankML | 来源:发表于2017-09-08 15:08 被阅读0次

Advantages:

Decision Trees are easy to explain. It results in a set of rules. (容易解释)

It follows the same approach as humans generally follow while making decisions.

Interpretation of a complex Decision Tree model can be simplified by its visualizations. Even a naive person can understand logic.(复杂的决策树也容易可视化)

The Number of hyper-parameters to be tuned is almost null.

Disadvantages:

There is a high probability of overfitting in Decision Tree. (很容易过拟合)

Generally, it gives low prediction accuracy for a dataset as compared to other machine learning algorithms.(通常情况下精确度不如其他算法好)

Information gain in a decision tree with categorical variables gives a biased response for attributes with greater no. of categories.

Calculations can become complex when there are many class labels. (分类较多的是否计算比较复杂)

相关文章

  • 决策树概论

    决策树的结构 基于条件形成路径的视角 基于递归生成树的视角 决策树的优缺点

  • 决策树

    问题: 1. 决策树节点是如何确定? 2. 决策树构建流程是怎么样? 3. 决策树都有哪些优缺点? 4. 决策树缺...

  • 2018-05-14

    机器学习算法优缺点及其应用领域 决策树 一、 决策树优点 1、决策树易于理解和解释,可以可视化分析,容易提取出规则...

  • 常用机器学习算法优缺点及其应用领域

    机器学习算法优缺点及其应用领域 决策树 一、 决策树优点 1、决策树易于理解和解释,可以可视化分析,容易提取出规...

  • 机器学习-各分类模型优缺点(持续更新)

    面试过程中经常被问到各种算法的优缺点,特此整理,持续更新中。 1、决策树 优点 一、 决策树易...

  • 决策树的优缺点

    Advantages: Decision Trees are easy to explain. It result...

  • 《机器学习实战》笔记(三):Ch3 - 决策树

    第三章 决策树(代码) 决策树算法优缺点优点:计算复杂度不高,输出结果易于理解,对中间值不明干,可以处理不相关特征...

  • 面试经验(机器学习)

    常见分类模型( svm,决策树,贝叶斯等)的优缺点,适用场景以及如何选型 解决过拟合的方法有哪些? KNN(分类与...

  • 面试经验(机器学习)

    常见分类模型( svm,决策树,贝叶斯等)的优缺点,适用场景以及如何选型解决过拟合的方法有哪些? KNN(分类与回...

  • 机器学习之随机森林(简单理解)

    之前简单介绍了决策树,这篇文章简单介绍一下随机森林以及优缺点。 集成学习 通过构建并结合多个分类器来完成学习任务。...

网友评论

    本文标题:决策树的优缺点

    本文链接:https://www.haomeiwen.com/subject/rbogjxtx.html