linux,hadoop,python
文章平均质量分 62
foxchopin
这个作者很懒,什么都没留下…
展开
-
AttributeError: 'list' object has no attribute 'write_pdf'
from sklearn import datasetsx,y = datasets.make_classification(1000,20,n_informative = 3)from sklearn.tree import DecisionTreeClassifierdt = DecisionTreeClassifier()dt.fit(x,y)from StringIO import原创 2017-08-23 17:25:25 · 3782 阅读 · 0 评论 -
hive 启动时报错: Exception in thread "main" java.lang.RuntimeException: java.lang.
might have disabled stack guard. The VM will try to fix the stack guard now.It's highly recommended that you fix the library with 'execstack -c ', or link it with '-z noexecstack'.Exception in thr原创 2017-08-24 09:59:21 · 10070 阅读 · 1 评论 -
两个简单的 sklearn 实例
第一个实例 LR分辨肿瘤的良性或者恶性import pandas as pdimport numpy as npfrom time import timecolumn_names = ['Sample code number', 'Clump Thickness', 'Uniformity of Cell Size', 'Uniformity of Cell Shape',原创 2017-09-06 15:08:30 · 1171 阅读 · 0 评论 -
sklearn.decomposition.PCA介绍
sklearn.decomposition.PCA介绍 下面我们主要基于sklearn.decomposition.PCA来讲解如何使用scikit-learn进行PCA降维。PCA类基本不需要调参,一般来说,我们只需要指定我们需要降维到的维度,或者我们希望降维后的主成分的方差和占原始维度所有特征方差和的比例阈值就可以了。 现在我们对sklearn.decomposit原创 2017-09-22 16:50:22 · 17224 阅读 · 1 评论