准备数据:一种方法是通过svm_read_problem方法直接读取libsvm格式的文件,返回分类标签([])和数据([[]])。如:labels,
datas =svm_read_problem(‘filename’) ,还有一种方法是直接python格式的,这种方法适用于在程序执行过程中动态产生的data,我要用到的就是这种,没必要把大量的数据都写入文件(这两天搞infominer算法挖...
分类:
编程语言 时间:
2015-08-08 00:03:42
阅读次数:
173
接上篇:
def xgboost_pred(train,labels,test):
params = {}
params["objective"] = "reg:linear"
params["eta"] = 0.005
params["min_child_weight"] = 6
params["subsample"] = 0.7
params["colsample...
分类:
编程语言 时间:
2015-08-06 00:42:08
阅读次数:
2984
闲话少说先上代码
# 读方式打开文件
myfile=h5py.File('arr.mat','r')
arr = myfile['arr'][:]
myfile.close()
slt = 'ward'
while
clust_model = sklearn.cluster.AgglomerativeClustering(linkage=slt, affinity="euclidean", n...
分类:
编程语言 时间:
2015-07-28 18:33:11
阅读次数:
418
Sometimes the report labels do not show in reports or the report shows label IDs likeLabels!@SYS2123instead of label values.There are two reasons to t...
分类:
其他好文 时间:
2015-07-03 18:47:08
阅读次数:
109
先可以看一下data的数据结构 网站http://jsfiddle.net/gh/get/jquery/1.9.1/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/column-rotated-labels/...
分类:
其他好文 时间:
2015-06-27 19:50:31
阅读次数:
129
本文记录了python中的数据可视化——散点图scatter,令x作为数据(50个点,每个30维),我们仅可视化前两维。labels为其类别(假设有三类)。这里的x就用random来了,具体数据具体分析。label设定为[1:20]->1, [21:35]->2, [36:50]->3,(python中数组连接方法:先强制转为list,用+,再转回array)用matplotlib的scatter...
分类:
编程语言 时间:
2015-06-10 12:21:55
阅读次数:
1185
创建和转换场景尊重原创:http://cn.cocos2d-x.org/tutorial/show?id=2047什么是场景?场景是包含精灵(Sprites),标签(Labels),节点(Nodes)和其他游戏所需对象的容器。场景负责游戏逻辑的运行和游戏内容的逐帧渲染。每个游戏至少需要一个场景,你可...
分类:
其他好文 时间:
2015-06-08 18:55:39
阅读次数:
146
1. X轴文字斜着放,在xAxis里设置xAxis: { labels: { rotation: -90 //竖直放 rotation: -45 //45度倾斜 ...
分类:
其他好文 时间:
2015-06-01 09:29:25
阅读次数:
177
# 使用好任何机器学习算法的前提是选好Features
from numpy import *
import operator
from os import listdir
def classify0(inX, dataSet, labels, k):
dataSetSize = dataSet.shape[0]
diffMat = tile(inX, (dat...
分类:
编程语言 时间:
2015-05-10 09:56:10
阅读次数:
202
1 def select_from_list_by_label(self, locator, *labels): 2 """Selects `*labels` from list identified by `locator` 3 4 Select lis...
分类:
其他好文 时间:
2015-04-29 00:33:24
阅读次数:
128