码迷,mamicode.com
首页 > 其他好文 > 详细

机器学习中的特征选择filter

时间:2020-03-20 13:11:21      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:embed   bsp   class   学习   mic   python   div   技术   data   

来源地址:https://www.cnblogs.com/bjwu/p/9103002.html

 

Filter-移除低均方差的特征

代码:

from sklearn.feature_selection import VarianceThreshold
X = [[0, 0, 1], [0, 1, 0], [1, 0, 0], [0, 1, 1], [0, 1, 0], [0, 1, 1]]
sel = VarianceThreshold(threshold=(0.2)
sel.fit_transform(X)

返回值过滤了方差小于0.2的特征,方差信息为:

技术图片

 

 

Filter-单变量特征选择

SelectKBest 移除那些除了评分最高的 K 个特征之外的所有特征

代码:

from sklearn.datasets import load_iris
from sklearn.feature_selection import SelectKBest
from sklearn.feature_selection import chi2
iris = load_iris()
X, y = iris.data, iris.target
X.shape
X_new = SelectKBest(chi2, k=2).fit_transform(X, y)
X_new.shape

  

wrapper-递归式特征消除(RFE)

 

embedded-选取特征

 

机器学习中的特征选择filter

标签:embed   bsp   class   学习   mic   python   div   技术   data   

原文地址:https://www.cnblogs.com/bai2018/p/12530711.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!