python机器学习实现决策树


Posted in Python onNovember 11, 2019

本文实例为大家分享了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机器学习实现决策树

python机器学习实现决策树

python机器学习实现决策树

很明显看的出来,决策树深度越大,训练集拟合效果越好,但是往往面对测试集的预测效果会下降,这就是过拟合。

参考书籍: 《Python机器学习基础教程》

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python File readlines() 使用方法
Mar 19 Python
Python爬虫工程师面试问题总结
Mar 22 Python
实例讲解Python中浮点型的基本内容
Feb 11 Python
python opencv摄像头的简单应用
Jun 06 Python
Python BeautifulSoup [解决方法] TypeError: list indices must be integers or slices, not str
Aug 07 Python
python脚本执行CMD命令并返回结果的例子
Aug 14 Python
使用celery和Django处理异步任务的流程分析
Feb 19 Python
Python装饰器实现方法及应用场景详解
Mar 26 Python
如何在scrapy中捕获并处理各种异常
Sep 28 Python
浅谈Selenium+Webdriver 常用的元素定位方式
Jan 13 Python
Linux系统下升级pip的完整步骤
Jan 31 Python
如何利用python实现Simhash算法
Jun 28 Python
Python SQLAlchemy入门教程(基本用法)
Nov 11 #Python
django中间键重定向实例方法
Nov 10 #Python
Java文件与类动手动脑实例详解
Nov 10 #Python
python语言线程标准库threading.local解读总结
Nov 10 #Python
Python 脚本拉取 Docker 镜像问题
Nov 10 #Python
Python如何优雅获取本机IP方法
Nov 10 #Python
python argparser的具体使用
Nov 10 #Python
You might like
PHP PDO函数库详解
2010/04/27 PHP
PHP数组及条件,循环语句学习
2012/11/11 PHP
实例简介PHP的一些高级面向对象编程的特性
2015/11/27 PHP
基于Laravel(5.4版本)的基本增删改查操作方法
2019/10/11 PHP
laravel model模型处理之修改查询或修改字段时的类型格式案例
2019/10/17 PHP
cssQuery()的下载与使用方法
2007/01/12 Javascript
js 浮动层菜单收藏
2009/01/16 Javascript
围观tangram js库
2010/12/28 Javascript
firefox下jQuery UI Autocomplete 1.8.*中文输入修正方法
2012/09/19 Javascript
获取offsetTop和offsetLeft值的js代码(兼容)
2013/04/16 Javascript
jquery的相对父元素和相对文档定位示例代码
2013/08/02 Javascript
js去空格技巧分别去字符串前后、左右空格
2013/10/21 Javascript
js showModalDialog弹出窗口实例详解
2014/01/07 Javascript
JS实现OCX控件的事件响应示例
2014/09/17 Javascript
Javascript中的几种继承方式对比分析
2016/03/22 Javascript
javascript 定时器工作原理分析
2016/12/03 Javascript
详解Angular Reactive Form 表单验证
2017/07/06 Javascript
微信小程序bindtap事件与冒泡阻止详解
2019/08/08 Javascript
JavaScript动画实例之粒子文本的实现方法详解
2020/07/28 Javascript
Vue使用Element实现增删改查+打包的步骤
2020/11/25 Vue.js
[40:17]2018DOTA2亚洲邀请赛 4.5 淘汰赛 LGD vs Liquid 第一场
2018/04/06 DOTA
python del()函数用法
2013/03/24 Python
Python环境下安装使用异步任务队列包Celery的基础教程
2016/05/07 Python
Python中一般处理中文的几种方法
2019/03/06 Python
Python for循环与getitem的关系详解
2020/01/02 Python
python 实现rolling和apply函数的向下取值操作
2020/06/08 Python
详解python 支持向量机(SVM)算法
2020/09/18 Python
html5 input输入实时检测以及延时优化
2018/07/18 HTML / CSS
抽象方法、抽象类怎样声明
2014/10/25 面试题
文秘个人求职信范文
2014/04/22 职场文书
医学专业自荐信
2014/06/14 职场文书
绿色出行口号
2014/06/18 职场文书
工作时间调整通知
2015/04/24 职场文书
超外差式晶体管收音机的组装与统调
2021/04/22 无线电
Redis入门基础常用操作命令整理
2022/06/01 Redis
GoFrame框架数据校验之校验结果Error接口对象
2022/06/21 Golang