日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

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

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

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算法

總結

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

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。