问题: A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null. Return a deep ...
分类:
其他好文 时间:
2014-10-15 15:40:50
阅读次数:
262
摘抄自caffe github的issue697Siamesenets are supervised models for metric learning [1].[1] S. Chopra, R. Hadsell, and Y. LeCun. Learning a similarity metri...
分类:
Web程序 时间:
2014-10-13 16:38:19
阅读次数:
773
原文:http://leancodingnow.com/swift-learning-resources/Swift是Apple在今年的WWDC推出的一门新的编程语言,它的1.0版本跟着Xcode 6正式发布了。本文主要列出一些关于Swift的学习资源。Apple官方推出的iBookThe Swif...
分类:
编程语言 时间:
2014-10-13 12:03:19
阅读次数:
239
[Machine Learning (Andrew NG courses)]IV.Linear Regression with Multiple Variables...
分类:
系统相关 时间:
2014-10-13 11:13:09
阅读次数:
219
[Machine Learning (Andrew NG courses)]V. Octave Tutorial (Week 2)...
分类:
系统相关 时间:
2014-10-13 10:04:59
阅读次数:
242
引言 在现实生活中,我们每天都可能在不知不觉中使用了各种各样的机器学习算法。 例如,当你每一次使用 Google 时,它之所以可以运行良好,其中一个重要原因便是由 Google 实现的一种学习算法可以“学会”如何对网页进行排名。每当你使用 Facebook 或者 Apple 的照片处理应用时,它们都...
分类:
系统相关 时间:
2014-10-12 02:28:17
阅读次数:
442
原文链接来源: http://www.ruanyifeng.com/blog/2009/08/learning_javascript_closures.html//函数内部可以直接读取全局变量varn=999;functionf1(){alert(n);}f1();//999//函数外部无法读取函....
分类:
编程语言 时间:
2014-10-11 13:46:55
阅读次数:
170
题意:有n个向量(0
思路:先确定一点,对于选出的k个向量,按斜率从大到小的顺序摆放,面积最大。(不然会损失几个平行四边形的面积) 然后DP , DP[id][cur][height] 分别表示前id个向量,已经选出了cur个向量,高度为height的最大面积。面积计算公式为 x0*y0 + 2*x1*y0+x1*y1 + 2*x2*(y0+y1)........用记忆化搜索注意初始化的优化...
分类:
其他好文 时间:
2014-10-11 13:36:55
阅读次数:
173
线性代数是数学的一个重要分支,经常被应用到工程问题中,要理解深度学习以及操作深度学习,那么对于线性代数深刻的理解是非常重要的,以下摘要是我从DL book的第二章线性代数中抽取出来的比较有意思的一些理解基础线代问题的另一种有趣的方法。
2.3 Identity and inverse matrices
在线性方程组的求解当中,Identity和inverse matrice有很重要的作...
分类:
其他好文 时间:
2014-10-10 23:23:14
阅读次数:
280
大道至简Any intelligent fool can make things bigger and more complex. It takes a touch of genius – and a lot of courage – to move in the opposite directio...
分类:
其他好文 时间:
2014-10-10 21:34:04
阅读次数:
174