摘要: # -*- coding: utf-8 -*- """ Created on Wed Aug 10 20:26:15 2016 @author: qqhfeng """ #模块1 VarianceThreshold 选择特征值 ''' Feature selector that removes all low-variance features. This feature selectio... 阅读全文
posted @ 2016-08-10 20:44 qqhfeng16 阅读(431) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- """ Spyder Editor This is a temporary script file. """ import numpy as np from sklearn.preprocessing import StandardScaler #模块1 标准化 #无量纲化使不同规格的数据转换到同一规格。常见的无量纲化方法有标准化和区间缩放法... 阅读全文
posted @ 2016-08-10 20:28 qqhfeng16 阅读(590) 评论(0) 推荐(0) 编辑
摘要: https://github.com/jannson/yaha 阅读全文
posted @ 2016-08-10 09:21 qqhfeng16 阅读(1715) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- """ Created on Wed Aug 10 08:10:35 2016 @author: Administrator """ ''' 关于:cross_validation.scores 此处cross_validation.scores并不是cross_validation的scores, 而是分类函数(本文是clf,svm)的scor... 阅读全文
posted @ 2016-08-10 08:34 qqhfeng16 阅读(709) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- """ Created on Tue Aug 09 23:04:51 2016 @author: Administrator """ import numpy as np ''' python中的list是python的内置数据类型,list中的数据类不必相同的,而array的中的类型必须全部相同。 在list中的数据类型保存的是数据的存... 阅读全文
posted @ 2016-08-10 00:20 qqhfeng16 阅读(3975) 评论(0) 推荐(1) 编辑