日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

python决策树sklearn_请问python中的sklearn中决策树使用的是哪一种算法呢?

發(fā)布時間:2025/3/19 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python决策树sklearn_请问python中的sklearn中决策树使用的是哪一种算法呢? 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

1.10.6. Tree algorithms: ID3, C4.5, C5.0 and CART

What are all the various decision tree algorithms and how do they differ

from each other? Which one is implemented in scikit-learn?

ID3 (Iterative Dichotomiser 3) was developed in 1986 by Ross Quinlan.

The algorithm creates a multiway tree, finding for each node (i.e. in

a greedy manner) the categorical feature that will yield the largest

information gain for categorical targets. Trees are grown to their

maximum size and then a pruning step is usually applied to improve the

ability of the tree to generalise to unseen data.

C4.5 is the successor to ID3 and removed the restriction that features

must be categorical by dynamically defining a discrete attribute (based

on numerical variables) that partitions the continuous attribute value

into a discrete set of intervals. C4.5 converts the trained trees

(i.e. the output of the ID3 algorithm) into sets of if-then rules.

These accuracy of each rule is then evaluated to determine the order

in which they should be applied. Pruning is done by removing a rule’s

precondition if the accuracy of the rule improves without it.

C5.0 is Quinlan’s latest version release under a proprietary license.

It uses less memory and builds smaller rulesets than C4.5 while being

more accurate.

CART (Classification and Regression Trees) is very similar to C4.5, but

it differs in that it supports numerical target variables (regression) and

does not compute rule sets. CART constructs binary trees using the feature

and threshold that yield the largest information gain at each node.

scikit-learn uses an optimised version of the CART algorithm.

用的是CART算法

總結(jié)

以上是生活随笔為你收集整理的python决策树sklearn_请问python中的sklearn中决策树使用的是哪一种算法呢?的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。