MachineLearning实战第三日 决策树

学习MachineLearing第三日 决策树 关于信息熵和信息增益的计算,没有构建决策树的部分。
# 决策树
from math import log

# 创建数据集
def createDataSet():
dataSet=[[0, 0, 0, 0, 'no'], # 数据集
[0, 0, 0, 1, 'no'],
[0, 1, 0, 1, 'yes'],
[0, 1, 1, 0, 'yes'],
[0, 0, 0, 0, 'no'],
[1, 0, 0, 0, 'no'],
[1, 0, 0, 1, 'no'],
[1, 1, 1, 1, 'yes'],
[1, 0, 1, 2, 'ye

MachineLearning实战第三日 决策树最先出现在Python成神之路

版权声明:
作者:zhangchen
链接:https://www.techfm.club/p/4479.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>