- linear hash ETS/DETS/mnesia 都使用了linear hash算法http://en.wikipedia.org/wiki/Linear_hashingredis dict 的实现类似于linear hash,渐进式rehash,保证操作是O(1)。不过除了每次操作时执行...
分类:
其他好文 时间:
2014-09-02 00:17:13
阅读次数:
271
印象笔记同步分享:Machine Learning—Classification and logistic regression...
分类:
其他好文 时间:
2014-09-01 19:41:34
阅读次数:
144
印象笔记同步分享:Machine Learning—Linear Regression...
分类:
其他好文 时间:
2014-09-01 19:41:03
阅读次数:
176
印象笔记同步分享:Machine Learning—Generalized Linear Models广义线性模型...
分类:
其他好文 时间:
2014-09-01 19:40:43
阅读次数:
139
这些图片都是用一个DIV绘制出来的,其实原理并不复杂。 这些图片都是由CSS绘制出来的,通过background-image叠加实现, 如蘑菇头的实现,通过radial-gradient 径向渐变,linear-gradient 线性渐变相互叠加实现,如:123456789101112div {.....
分类:
Web程序 时间:
2014-09-01 10:36:12
阅读次数:
199
Given an array of integers, every element appearsthreetimes except for one. Find that single one.Note:Your algorithm should have a linear runtime comp...
分类:
其他好文 时间:
2014-08-31 14:27:21
阅读次数:
146
/* 线性渐变 */div.radial {width: 600px;height: 100px;margin: 30px auto;border: 1px #f00 solid;background: -webkit-gradient(linear, 0 0, 0 100%, from(yello...
分类:
Web程序 时间:
2014-08-30 17:36:40
阅读次数:
356
这一课时主要是讲述了线性模型的一些处理。
包括:
1、输入数据的表示(Input Representation)
2、线性分类(Linear Classification)
3、线性回归(Linear Regression)
4、非线性模型转换(Nonlinear Transformation)
作者认为,如果要测试某个模型的可用性,做好就是用真实数据。
为了讲解线...
分类:
其他好文 时间:
2014-08-29 22:42:38
阅读次数:
366
animation默认以ease方式过渡,它会在每个关键帧之间插入补间动画,所以动画效果是连贯性的。除了ease,linear、cubic-bezier之类的过渡函数都会为其插入补间。但有些效果不需要补间,只需要关键帧之间的跳跃,这时应该使用steps过渡方式。 比如GIF动图不支持程序对播放的控....
分类:
Web程序 时间:
2014-08-29 14:31:48
阅读次数:
206
Given an array of integers, every element appearsthreetimes except for one. Find that single one.Note:Your algorithm should have a linear runtime comp...
分类:
其他好文 时间:
2014-08-29 01:18:36
阅读次数:
275