In this chapter we will study the family of linear predictors, one of the most useful families of hypothesis classes. Many learning algorithms that ar ...
分类:
其他好文 时间:
2016-08-27 16:40:29
阅读次数:
143
英文原文:《MapReduce Patterns, Algorithms, and Use Cases》 https://highlyscalable.wordpress.com/2012/02/01/mapreduce-patterns/ 在这篇文章里总结了几种网上或者论文中常见的MapReduc ...
分类:
编程语言 时间:
2016-08-20 17:41:26
阅读次数:
252
一:引言 在前面我们谈论到的算法都是在给定x的情况下直接对p(y|x;Θ)进行建模。例如,逻辑回归利用hθ(x) = g(θTx)对p(y|x;Θ)建模。 现在考虑这样一个分类问题,我们想根据一些特征来区别动物是大象(y=1)还是狗(y=0)。给定了这样一个训练集,逻辑回归或感知机算法要做的就是去找 ...
分类:
编程语言 时间:
2016-08-15 01:26:44
阅读次数:
295
# 视频 https://www.coursera.org/learn/introduction-to-algorithms Algorithms, Part I coursera 《Algorithms》作者出的视频(推荐) https://www.coursera.org/learn/java- ...
分类:
编程语言 时间:
2016-08-12 01:03:04
阅读次数:
122
我的算法学习之路 2014年 5月 4日 | 评论 作者:Lucida 微博:@peng_gong 豆瓣:@figure9 原文链接:http://lucida.me/blog/on-learning-algorithms/ 关于 严格来说,本文题目应该是我的数据结构和算法学习之路,但这个写法实在太 ...
分类:
编程语言 时间:
2016-08-09 09:22:11
阅读次数:
211
This webpage covers the space and time Big-O complexities of common algorithms used in Computer Science. When preparing for technical interviews in the past, I found myself spending hours crawling the internet...
分类:
其他好文 时间:
2016-08-08 22:51:24
阅读次数:
240
Problem Description sevenzero liked Warcraft very much, but he haven't practiced it for several years after being addicted to algorithms. Now, though ...
分类:
其他好文 时间:
2016-08-07 21:26:13
阅读次数:
113
英文原址:http://www.risc.jku.at/people/ckoutsch/stuff/e_algorithms.html 奥地利符号计算研究所(Research Institute for Symbolic Computation,简称RISC)的Christoph Koutschan ...
分类:
编程语言 时间:
2016-08-07 15:26:57
阅读次数:
162
几个比较常见的排序算法里头,这个我是比较生疏的一个,有一天突然被问了一个问题是,归并排序最大的特点是什么,我才想起这个算法来。下午又看不进书啦,就实现一下,记下来。 归并排序采取的是分治策略,就是先将数据不断地进行二分,然后分别排序子序列之后再不断地合并在一起。 归并排序与快排一样,时间复杂度是O( ...
分类:
编程语言 时间:
2016-07-29 18:44:23
阅读次数:
139
Resource:《Introduction to Evolutionary Computing》 1. What is an evolutionary algorithm? There are many different variants of evolutionary algorithms. ...
分类:
其他好文 时间:
2016-07-22 21:06:26
阅读次数:
179