上一页 1 2 3 4 5 6 7 ··· 426 下一页
摘要: 卷积神经网络CNN(YannLecun,1998年)通过构建多层的卷积层自动提取图像上的特征,一般来说,排在前边较浅的卷积层采用较小的感知域,可以学习到图像的一些局部的特征(如纹理特征),排在后边较深的卷积层采用较大的感知域,可以学习到更加抽象的特征(如物体大小,位置... 阅读全文
posted @ 2018-07-19 14:49 未雨愁眸 阅读(2025) 评论(0) 推荐(0) 编辑
摘要: 1. 举一个内部类的实例(jdk 中)java Collection 容器的 iterator() 成员函数的实现,比如 ArrayList 内部的 iterator 的实现:public class ArrayList { public Iterator it... 阅读全文
posted @ 2018-07-18 23:01 未雨愁眸 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 1. 平方根的计算使用 Babylonian method 方法(https://en.wikipedia.org/wiki/Methods_of_computing_square_roots)进行计算:def babylonian(s, x0, n_iter): ... 阅读全文
posted @ 2018-07-16 23:27 未雨愁眸 阅读(502) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/seetheworld518/article/details/46756639 https://blog.csdn.net/together_cz/article/details/762225581. 使用索引>> strA... 阅读全文
posted @ 2018-07-15 22:32 未雨愁眸 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 1. jstack:占用最多资源(CPU 内存)的Java代码https://www.cnblogs.com/chengJAVA/p/5821218.html https://blog.csdn.net/u012448083/article/details/76855... 阅读全文
posted @ 2018-07-15 18:53 未雨愁眸 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 0,1,2…n-1,n 个数中随机取 m 个数,要求 0, 1, n-1,此 n 个数每个数被取到的概率相同:Knuth 书中的随机化方法,很容易写出:void genkunth (int n, int m) { for (int i = 0; i m 时,最... 阅读全文
posted @ 2018-07-13 21:18 未雨愁眸 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 高级数据结构及应用 —— 使用 bitmap 进行字符串去重位图应当具备的置一,清零,以及判断三大功能:#define BITS_PER_WORD 32#define MASK 0x1f#define SHIFT 5 // BITS_PER_WO... 阅读全文
posted @ 2018-07-13 20:39 未雨愁眸 阅读(2071) 评论(0) 推荐(1) 编辑
摘要: 1. Top k 大的数排序后直接索引输出:O(nlog⁡n)" role="presentation">O(nlogn)O(nlog⁡n)std::sort(v.rbegin(), r.rend());return v[k-1];使用优先队列(O(kl... 阅读全文
posted @ 2018-07-07 17:44 未雨愁眸 阅读(163) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/lanchunhui/article/details/505693111. 矩阵形式的通项(Fn+2Fn+1)=(1,11,0)⋅(Fn+1Fn)" role="presentation">(Fn+2Fn+1)... 阅读全文
posted @ 2018-07-07 17:17 未雨愁眸 阅读(505) 评论(0) 推荐(0) 编辑
摘要: 1. CopyEdithttp://www.conyedit.com/,跨平台的文本编辑器插件;监控粘贴板以及支持命令解析其官网上有其动图演示; 阅读全文
posted @ 2018-07-07 16:43 未雨愁眸 阅读(308) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 426 下一页