Python集成学习之Blending算法详解
作者:GoAl的博客 时间:2022-09-28 04:31:35
一、前言
普通机器学习:从训练数据中学习一个假设。
集成方法:试图构建一组假设并将它们组合起来,集成学习是一种机器学习范式,多个学习器被训练来解决同一个问题。
集成方法分类为:
Bagging(并行训练):随机森林
Boosting(串行训练):Adaboost; GBDT; XgBoost
Stacking:
Blending:
或者分类为串行集成方法和并行集成方法
1.串行模型:通过基础模型之间的依赖,给错误分类样本一个较大的权重来提升模型的性能。
2.并行模型的原理:利用基础模型的独立性,然后通过平均能够较大地降低误差
二、Blending介绍
训练数据划分为训练和验证集+新的训练数据集和新的测试集
将训练数据进行划分,划分之后的训练数据一部分训练基模型,一部分经模型预测后作为新的特征训练元模型。
测试数据同样经过基模型预测,形成新的测试数据。最后,元模型对新的测试数据进行预测。Blending框架图如下所示:
注意:其是在stacking的基础上加了划分数据
三、Blending流程图
第一步:将原始训练数据划分为训练集和验证集。
第二步:使用训练集对训练T个不同的模型。
第三步:使用T个基模型,对验证集进行预测,结果作为新的训练数据。
第四步:使用新的训练数据,训练一个元模型。
第五步:使用T个基模型,对测试数据进行预测,结果作为新的测试数据。
第六步:使用元模型对新的测试数据进行预测,得到最终结果。
四、案例
相关工具包加载
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
plt.style.use("ggplot")
%matplotlib inline
import seaborn as sns
创建数据
from sklearn import datasets
from sklearn.datasets import make_blobs
from sklearn.model_selection import train_test_split
data, target = make_blobs(n_samples=10000, centers=2, random_state=1, cluster_std=1.0 )
## 创建训练集和测试集
X_train1,X_test,y_train1,y_test = train_test_split(data, target, test_size=0.2, random_state=1)
## 创建训练集和验证集
X_train,X_val,y_train,y_val = train_test_split(X_train1, y_train1, test_size=0.3, random_state=1)
print("The shape of training X:",X_train.shape)
print("The shape of training y:",y_train.shape)
print("The shape of test X:",X_test.shape)
print("The shape of test y:",y_test.shape)
print("The shape of validation X:",X_val.shape)
print("The shape of validation y:",y_val.shape)
设置第一层分类器
from sklearn.svm import SVC
from sklearn.ensemble import RandomForestClassifier
from sklearn.neighbors import KNeighborsClassifier
clfs = [SVC(probability=True),RandomForestClassifier(n_estimators=5,n_jobs=-1,criterion='gini'),KNeighborsClassifier()]
设置第二层分类器
from sklearn.linear_model import LinearRegression
lr = LinearRegression()
第一层
val_features = np.zeros((X_val.shape[0],len(clfs)))
test_features = np.zeros((X_test.shape[0],len(clfs)))
for i,clf in enumerate(clfs):
clf.fit(X_train,y_train)
val_feature = clf.predict_proba(X_val)[:,1]
test_feature = clf.predict_proba(X_test)[:,1]
val_features[:,i] = val_feature
test_features[:,i] = test_feature
第二层
lr.fit(val_features,y_val)
输出预测的结果
lr.fit(val_features,y_val)
from sklearn.model_selection import cross_val_score
cross_val_score(lr,test_features,y_test,cv=5)
来源:https://blog.csdn.net/qq_36816848/article/details/116674754
标签:Python,Blending,算法
0
投稿
猜你喜欢
网页特效文字之—粗糙字
2013-07-23 04:34:56
php 读取文件头判断文件类型的实现代码
2023-11-15 09:50:06
Pyinstaller打包文件太大的解决方案
2022-01-20 22:19:24
mysql增量备份及断点恢复脚本实例
2024-01-27 04:54:34
python中列表对象pop()方法的使用说明
2021-10-25 09:45:40
Python爬虫文件下载图文教程
2023-11-18 23:59:03
MySQL自动为查询数据结果加序号
2024-01-20 03:17:51
python抓取多种类型的页面方法实例
2023-11-20 12:56:11
Python计算双重差分模型DID及其对应P值使用详解
2022-08-06 21:07:53
基于Python实现微信聊天界面生成器
2021-12-19 20:36:02
使用Django框架中ORM系统实现对数据库数据增删改查
2024-01-28 03:25:50
asp封装dll源码分享
2008-09-25 17:20:00
python编译pyc文件的过程解析
2022-08-13 20:48:19
python实现对列表中的元素进行倒序打印
2023-03-24 01:48:43
利用Vue实现卡牌翻转的特效
2024-04-30 10:30:45
前端来看看 maxthon bugs
2008-09-23 18:35:00
在Python运行时动态查看进程内部信息的方法
2021-06-09 09:15:40
javascript适合移动端的日期时间拾取器
2023-07-02 05:25:48
深入浅析python with语句简介
2022-06-30 20:23:16
Python3实现爬取简书首页文章标题和文章链接的方法【测试可用】
2021-10-08 00:22:10