快活林资源网 Design By www.csstdc.com
本文实例为大家分享了python机器学习实现决策树的具体代码,供大家参考,具体内容如下
# -*- coding: utf-8 -*- """ Created on Sat Nov 9 10:42:38 2019 @author: asus """ """ 决策树 目的: 1. 使用决策树模型 2. 了解决策树模型的参数 3. 初步了解调参数 要求: 基于乳腺癌数据集完成以下任务: 1.调整参数criterion,使用不同算法信息熵(entropy)和基尼不纯度算法(gini) 2.调整max_depth参数值,查看不同的精度 3.根据参数criterion和max_depth得出你初步的结论。 """ import matplotlib.pyplot as plt import numpy as np import pandas as pd import mglearn from sklearn.model_selection import train_test_split #导入乳腺癌数据集 from sklearn.datasets import load_breast_cancer from sklearn.tree import DecisionTreeClassifier #决策树并非深度越大越好,考虑过拟合的问题 #mglearn.plots.plot_animal_tree() #mglearn.plots.plot_tree_progressive() #获取数据集 cancer = load_breast_cancer() #对数据集进行切片 X_train,X_test,y_train,y_test = train_test_split(cancer.data,cancer.target, stratify = cancer.target,random_state = 42) #查看训练集和测试集数据 print('train dataset :{0} ;test dataset :{1}'.format(X_train.shape,X_test.shape)) #建立模型(基尼不纯度算法(gini)),使用不同最大深度和随机状态和不同的算法看模型评分 tree = DecisionTreeClassifier(random_state = 0,criterion = 'gini',max_depth = 5) #训练模型 tree.fit(X_train,y_train) #评估模型 print("Accuracy(准确性) on training set: {:.3f}".format(tree.score(X_train, y_train))) print("Accuracy(准确性) on test set: {:.3f}".format(tree.score(X_test, y_test))) print(tree) # 参数选择 max_depth,算法选择基尼不纯度算法(gini) or 信息熵(entropy) def Tree_score(depth = 3,criterion = 'entropy'): """ 参数为max_depth(默认为3)和criterion(默认为信息熵entropy), 函数返回模型的训练精度和测试精度 """ tree = DecisionTreeClassifier(criterion = criterion,max_depth = depth) tree.fit(X_train,y_train) train_score = tree.score(X_train, y_train) test_score = tree.score(X_test, y_test) return (train_score,test_score) #gini算法,深度对模型精度的影响 depths = range(2,25)#考虑到数据集有30个属性 scores = [Tree_score(d,'gini') for d in depths] train_scores = [s[0] for s in scores] test_scores = [s[1] for s in scores] plt.figure(figsize = (6,6),dpi = 144) plt.grid() plt.xlabel("max_depth of decision Tree") plt.ylabel("score") plt.title("'gini'") plt.plot(depths,train_scores,'.g-',label = 'training score') plt.plot(depths,test_scores,'.r--',label = 'testing score') plt.legend() #信息熵(entropy),深度对模型精度的影响 scores = [Tree_score(d) for d in depths] train_scores = [s[0] for s in scores] test_scores = [s[1] for s in scores] plt.figure(figsize = (6,6),dpi = 144) plt.grid() plt.xlabel("max_depth of decision Tree") plt.ylabel("score") plt.title("'entropy'") plt.plot(depths,train_scores,'.g-',label = 'training score') plt.plot(depths,test_scores,'.r--',label = 'testing score') plt.legend()
运行结果:
很明显看的出来,决策树深度越大,训练集拟合效果越好,但是往往面对测试集的预测效果会下降,这就是过拟合。
参考书籍: 《Python机器学习基础教程》
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
快活林资源网 Design By www.csstdc.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
快活林资源网 Design By www.csstdc.com
暂无评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新日志
2025年01月09日
2025年01月09日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]