上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
摘要: 调试的指令很简单: cd $CAFFE_ROOT, 1. gdb ./build/tools/caffe 2. 设置运行参数 set args train --solver=xxxxsolver.prototxt 3. 设置断点, 比如b solver.cpp:59 , 此时会出现“Make bre 阅读全文
posted @ 2017-06-04 22:49 Key_Ky 阅读(1267) 评论(0) 推荐(0) 编辑
摘要: 上面的例子主要是想知道B,C是否会有自己的虚表指针,结果我用gdb -g test.cpp进行调试,发现: p a -> {_vptr.A = 0x400c28 <vtable for A+16>, i = 4197277} p b -> {<A> = {_vptr.A = 0x400c10 <vt 阅读全文
posted @ 2017-06-04 21:17 Key_Ky 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 直接看例子就好: Note keyword virtual here. virtual inheritance. virtual not needed here. It is necessary to initialize all virtual base classes explicitly in 阅读全文
posted @ 2017-06-04 19:31 Key_Ky 阅读(384) 评论(0) 推荐(0) 编辑
摘要: AnnotatedDatum是存放图片和BBox的类 数据增强效果图 假设原图输入是一张640*480的图片,这里由于版面问题我放缩了图片尺寸并且没做mean subtract,由于最后会有resize参数导致输出的图片都会resize到300x300,但是主要看的是增强的效果,SSD中的数据增强的 阅读全文
posted @ 2017-05-17 11:40 Key_Ky 阅读(1984) 评论(0) 推荐(0) 编辑
摘要: 准备记录numpy和c++的混合编程 阅读全文
posted @ 2017-01-23 17:38 Key_Ky 阅读(7762) 评论(0) 推荐(1) 编辑
摘要: Token-Pasting Operator (##)The double-number-sign or “token-pasting” operator (##), which is sometimes called the “merging” operator, is used in both 阅读全文
posted @ 2017-01-22 22:33 Key_Ky 阅读(353) 评论(0) 推荐(0) 编辑
摘要: debugNNIntroduction to debugging neural networksThe following advice is targeted at beginners to neural networks, and is basedon my experience giving 阅读全文
posted @ 2017-01-22 15:26 Key_Ky 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 正则表达式备忘: 阅读全文
posted @ 2016-12-15 09:19 Key_Ky 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 随机试验的结果称为事件。比如扔3个硬币恰好出现了两个正面。 事件分为复合(可分解)事件和简单(不可分解)事件。例如抛掷两个骰子的点数和为6是复合事件,抛掷骰子的点数分别为1,5是简单事件。 发生简单事件的样本称为样本点。随机试验的每一个不可分解的结果可以用一个且只能用一个样本点来表示。 样本点的全体 阅读全文
posted @ 2016-12-11 16:42 Key_Ky 阅读(204) 评论(0) 推荐(0) 编辑
摘要: tensorflow安装时遇到gcc: error trying to exec 'as': execvp: No such file or directory. 截止到2016年11月13号,源码编译tensorflow还不支持gcc5.4,我使用的是gcc5.3,使用bazel工具进行编译时遇到 阅读全文
posted @ 2016-11-13 16:23 Key_Ky 阅读(514) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页