数据来源:http://archive.ics.uci.edu/ml/datasets/seeds 15.26 14.84 0.871 5.763 3.312 2.221 5.22 Kama 14.88 14.57 0.8811 5.554 3.333 1.018 4.956 Kama 14.29 ...
分类:
其他好文 时间:
2016-05-19 21:18:41
阅读次数:
225
最近在学深度学习相关的东西,在网上搜集到了一些不错的资料,现在汇总一下: Free Online Books Courses Video and Lectures Papers Tutorials WebSites Datasets Frameworks Miscellaneous Github 几 ...
分类:
其他好文 时间:
2016-05-13 09:29:23
阅读次数:
457
数据集:公开数据集 100+有趣的数据集的统计数据 http://rs.io/100-interesting-data-sets-for-statistics/ 数据集 subreddit https://www.reddit.com/r/datasets UCI机器学习库 http://archi ...
分类:
其他好文 时间:
2016-04-25 15:04:32
阅读次数:
120
参考资料: 《复杂数据统计方法》&网络&帮助文件 适用情况:在因变量为分类变量而自变量含有多个分类变量或分类变量水平较多的情况。 一. (一)概论和例子 数据来源:http://archive.ics.uci.edu/ml/datasets/Cardiotocography 自变量:LB - FHR ...
分类:
其他好文 时间:
2016-04-23 18:11:37
阅读次数:
280
Matlab Codes and Datasets for Feature Learning 浙江大学CAiDeng提供的Matlab特征学习Code。 Matlab Codes and Datasets for Feature Learning 浙江大学CAiDeng提供的Matlab特征学习Co ...
分类:
其他好文 时间:
2016-04-17 11:31:11
阅读次数:
136
刚刚完成了Andrew Ng在Cousera上的Machine Learning的第十周课程,这周主要介绍的是大规模机器学习,现将笔记整理在下面。Gradient Descent with Large DatasetsLearning With Large Datasets在前面介绍bias-variance的时候,我们曾提到一个比较各种算法孰优孰劣的实验,结论是”it’s not who has...
分类:
系统相关 时间:
2016-04-14 14:26:02
阅读次数:
301
I'm always on a lookout for interesting datasets to collect, analyze and interpret. And what better dataset to collect/analyze than the meta-dataset o ...
分类:
其他好文 时间:
2016-04-11 14:02:47
阅读次数:
224
Kmeans: 总体而言,速度(单线程): yael_kmeans > litekmeans ~ vl_kmeans 1.vl_kemans (win10 + matlab 15 + vs13编译有问题,但win7 + matlab13 +vs12可以) 2.litekmeans (直接使用,sin ...
分类:
其他好文 时间:
2016-04-08 23:01:44
阅读次数:
389
from sklearn import datasets import numpy as np X, y = datasets.make_blobs(n_features=2, centers=2) from sklearn.svm import LinearSVC from sklearn.svm ...
分类:
其他好文 时间:
2016-03-31 23:30:16
阅读次数:
399
import matplotlib.pyplot as plt from sklearn import datasets import numpy as np from sklearn.tree import DecisionTreeClassifier n_features = 200 X, y ...
分类:
其他好文 时间:
2016-03-31 12:38:00
阅读次数:
1497