- 博客(35)
- 收藏
- 关注
原创 poj 3299
// poj.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include#includeusing namespace std;bool flag_h=false;bool flag_d=false;bool flag_t=false;int main(){ double h,t,d; char a; wh
2015-03-15 20:46:47 316
原创 poj本周计划(从周日开始)
周日:最小生成树,求生成树中最长边的最小值。done 程度:对最小生成树有了一些了解,看懂了prim算法的C++实现。 1251,1258,1789
2015-03-08 17:11:09 335
原创 实用机器学习视频之PCA
训练数据集中num415和num857这两组数据的相关系数大于0.8。从上图可以直观地看到num415和num857的强相关性。上图简介了PCA方法的一点起源以及该方法的一些优点。从上图可以看出,num415和num857这两组数据的和分布在较广的范围,而num415和num857这两组数据的差大部分为0,因而二者之和可以反映出两组数据更多的信息。从
2015-03-07 21:03:31 431
原创 文章标题
刚看完http://beader.me/2014/05/03/logistic-regression/这篇关于logistic回归的博客,还没有完全消化。17:06看完data snooping这一视频。现在来回忆一下这十几分钟讲述的主要内容。 1.预测的时候数据是分为训练集和测试集的。 2.虽然在做机器学习的时候snooping不好,但是,想要做到不snooping是很难的。 3.如果希望预
2015-03-03 17:19:18 295
转载 欢迎使用CSDN-markdown编辑器
欢迎使用Markdown编辑器写博客这里写代码片本Markdown编辑器使用StackEdit修改而来,用它写博客,将会带来全新的体验哦:Markdown和扩展Markdown简洁的语法代码块高亮图片链接和图片上传LaTex数学公式UML序列图和流程图离线写博客导入导出Markdown文件丰富的快捷键快捷键加粗 Ctrl + B 斜体 Ctrl + I 引用
2015-03-03 15:10:53 252
原创 机器学习学习笔记之rf模型
今天学习rf模型,http://beader.me/2013/12/01/random-forests/这篇博客写得不错,大部分是对http://blog.echen.me/2011/03/14/laymans-introduction-to-random-forests/这一篇的翻译。首先,作者翻译的不错;其次,作者在翻译的过程中非常灵活地加入了自己的理解,结合身边的例子更加形象地对rf进行了描
2015-03-03 14:50:43 2456
原创 看博文有感
下面这篇文章还挺有趣的,是用Python作为数据分析工具,通过计算一些指标以及画一些图形来评价阿里大数据竞赛中一些学校的表现。链接如下:http://beader.me/2014/03/23/good-universities/最近看了一些博客,主要是与机器学习相关的,通过那些博客,我了解到,有些人在本科就已经比我现在在研究生阶段学习的内容超前不少了,有些人可以在一个学期的时间内在网上学习
2015-03-03 12:00:45 444
原创 机器学习相关博客链接
貌似还是个本科生。看了他的博客,你会知道差距在哪里。http://blog.csdn.net/dark_scope/article/details/16902033
2015-03-02 20:20:25 274
转载 好文
转 说到孤独,叔本华说:”人生的空虚不在于人的孤独,而在于心的寂寞“收藏 好文转 http://blog.csdn.net/dark_scope/article/details/8165935大学杂念集 之 关于杂念开学季多是浮躁时,这是我大一的经验,或许为新环境而兴奋,或许是被各种活动晃花了眼,或许是为心中的悸动,你无法保持平常心。你希望被人注
2015-03-02 16:39:30 268
原创 poj3252
今天上完组合数学课之后,大部分时间是在做poj 3252。做的状况不好,但这是一道好题,刚好与组合数学相关,可以相互巩固一下。做题的效率很低,一方面是习惯不好,既然知道自己对着电脑的思考效果不如用纸笔的效果好,为什么不准备好纸笔呢?另一方面是饿了饿了饿了。好,今天你找了两条借口,明天做题目的时候我会改善这两条借口!参考了http://www.cnblogs.com/ts65213/archiv
2015-03-02 16:23:21 349
原创 poj1088
// poj.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#includeusing namespace std;int a[200][200];int l[4][2]={{1,0},{0,-1},{-1,0},{0,1}};int r,c;int DP(int i, int j){ bool visited[200][
2015-02-05 22:23:14 326
原创 python 学习
在查找比较字符串的方法的时候碰到的,用该方法对之前写的代码进行了改进,使得输出的结果格式与文件中的格式完全一致了。上述改进用于read_C_func.py以及read_b.py。http://book.51cto.com/art/201411/456725.htm2、如何比较两个字符串,并且忽略大小写、空白字符、TAB 制表符、换行等。这个很容易解决,把字符串转换成小写后 split,然后
2015-02-05 15:56:55 273
原创 head first python chap 5 学习笔记
一、python的两种排序方法data=[6,5,4,3,2,1]data.sort()"""one method"""print(data)data2=sorted(data)""" another method"""print(data2) 二、处理数据格式并对数据进行排序(page 151)def sanitize(time_string): if
2015-02-04 17:00:06 348
原创 head first python 读书记录
1.names=['a','b']>>> isinstance(names,list)True>>> names=2>>> isinstance(names,list)Falseisinstance(x,y) 可以判断x是否是类型y。2.这个版本可以继续想(page 30)movies=["a","b","c","d",["f",["g","h"]]]prin
2015-02-04 13:24:21 255
原创 head first series 读书记录
1.p219的这段代码没有运行成功import pygame.mixersounds = pygame.mixersounds.init()def wait_finish(channel):while channel.get_busy():passs = sounds.Sound("heartbeat.wav")wait_finish(s.play())s2 =
2015-02-04 10:57:19 366
原创 poj1658
#include "stdafx.h"#includeusing namespace std;int a[20];int main(){ int n; cin>>n; for(int i=0;i { for(int k=0;k cin>>a[k]; if(a[0]+a[3]==a[1]+a[2]) a[4]=a[0]+4*(a[1]-
2015-02-03 22:22:03 277
原创 head first series 学习记录(Python)
1.缩进很重要2.输入的时候需要加上引号3.page 40这样写不对。import urllib2page=urllib2.urlopen("http://www.beans-r-us.biz/prices.html")text=page.read().decode("utf8")print(text)这样还是不对。import urllib2page=
2015-02-03 14:27:55 283
原创 WPF把参数信息写到文件中基本代码
string txt1 = this.HCD_tol.Text; try { double pre_tol = Double.Parse(txt1); // StreamWriter sw = new StreamWriter("param.txt");
2015-02-03 10:57:59 287
原创 poj1450
GridlandTime Limit: 1000MS Memory Limit: 10000KTotal Submissions: 8321 Accepted: 4217DescriptionBackground For years, computer scientists have been trying to fi
2015-02-02 22:05:39 243
原创 poj1789
Truck HistoryTime Limit: 2000MS Memory Limit: 65536KTotal Submissions: 19532 Accepted: 7538DescriptionAdvanced Cargo Movement, Ltd. uses trucks of different types.
2015-02-02 20:48:40 253
原创 poj 3062
Celebrity jeopardyTime Limit: 1000MS Memory Limit: 65536KTotal Submissions: 15208 Accepted: 8589DescriptionIt's hard to construct a problem that's so easy that
2015-01-30 22:36:27 276
原创 poj2479
Maximum sumTime Limit: 1000MS Memory Limit: 65536KTotal Submissions: 34570 Accepted: 10705DescriptionGiven a set of n integers: A={a1, a2,..., an}, we define a fu
2015-01-30 21:41:22 247
原创 poj1004
#includeusing namespace std;double a[15];double sum=0;int main(){ for(int i=0;i { cin>>a[i]; sum+=a[i]; } sum/=12; char a='$' printf(%s,a);
2015-01-29 21:40:15 252
原创 poj1328
更新的代码:#include#includeusing namespace std; struct island{ double a; double b; double left; double right;}A[100];flag[100];bool cmp(island A, island B){ return A.a}
2015-01-29 21:09:51 290
原创 poj1328
做这道题目的时候参考了如下博客:http://blog.csdn.net/zhengnanlee/article/details/9613161发现一个反例。先按照左交点排序,以三个区间为例,则有l1不过可能是实现有问题,思路没有问题。代码如下:#include#includeusing namespace std; struct island{ double
2015-01-29 20:33:49 355
原创 poj2718
Smallest DifferenceTime Limit: 1000MS Memory Limit: 65536KTotal Submissions: 4863 Accepted: 1336DescriptionGiven a number of distinct decimal digits, you can form
2015-01-27 20:47:42 1042
转载 poj1609
转载自该博客:http://blog.csdn.net/geniusluzh/article/details/6768329#include#includeusing namespace std; struct NODE{ int l; int r;}blocks[10010];int dp[110][110];int main(){
2015-01-27 20:34:28 506
转载 encourage
http://blog.sina.com.cn/s/blog_591e979d0100kds5.htmlJordan身兼stat和cs两个系的教授,从他身上可以看出Stat和ML的融合。
2014-12-04 19:17:59 223
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人