摘要:
1. VOC: 20 object classes Person : person Animal : bird, cat, cow, dog, horse, sheep Vehicle : aeroplane, bicycle, boat, bus, car, motorbike, train In 阅读全文
摘要:
TP : Ture Positive 把正的判断为正的数目 True Positive,判断正确,且判为了正,即正的预测为正的。 FN : False Negative 把正的错判为负的数目 False Negative,判断错误,且判为了负,即把正的判为了负的 FP : False Positiv 阅读全文
摘要:
I suggest you use not , and use . Now the best solution is to remake with I think. What’s more, Here is something I suggest: when making openCV, I str 阅读全文
摘要:
什么是回归问题? 回归问题即拟合问题,利用现有的数据,找出一个数学表达式,这个表达式能很好地描述这些数据的变化趋势。 阅读全文
摘要:
1. Jaccard系数 : 用来比较两个有限集合之间的相似度,越大则相关性越高: Jaccard距离 :用于描述集合之间的不相似度 symmetric difference(对参差): 2. NMS(non maximum supression) : 抑制不是极大值的元素,搜索局部的极大值,这个局 阅读全文
摘要:
终于在知乎上中找到[深度神经网络中的感受野(Receptive Field) 蓝荣祎的文章 知乎 http://zhuanlan.zhihu.com/p/28492837](https://zhuanlan.zhihu.com/p/22627224) 算是弄清了基本原理,记录以备忘 1.先举个例子: 阅读全文
摘要:
![sigmoid function](https://upload-images.jianshu.io/upload_images/9070639-1b5658d374f73f40.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) 阅读全文
摘要:
对整数a,b取余和取模统一都分为2步: 第一步:求整数商, c = a / b 第二步:计算模或余数,r = a c b 这里,第二步对于取余还是取模都是相同的,因为减法和乘法一般不会带来误差; 但是对于第一步,除法会带来误差,取余在计算c时是向0的方向舍入的,比如 1/5= 0.2,于是向0取整得 阅读全文
摘要:
完成截图如下: 上侧位置1:显示多文档编辑,当打开多个文件时可按CTRL+Tab键切换 左侧位置2:显示当前目录下的文件,按CTRL+左右箭头在2和3之间进行切换 右侧位置3:文档编辑区 本次的配置主要在3个方面:语法高亮,多文档编辑,添加文件目录双窗口 1. 先下载安装gvim 2. 设置语法高亮 阅读全文
摘要:
1. In statistics, goodness of fit refers to how closely a model's predicted values match the observed(true) values 2. overfit : A model that has learn 阅读全文