码迷,mamicode.com
首页 >  
搜索关键字:precision    ( 571个结果
联合人脸检测、校准算法介绍
联合人脸检测、校准算法介绍人脸检测(detection)在opencv中早就有直接能拿来用的haar分类器,基于Viola-Jones算法。但是毕竟是老掉牙的技术,Precision/Recall曲线渣到不行,在实际工程中根本没法给boss看,作为MSRA脑残粉,这里介绍一种MSRA在14年的最新技...
分类:编程语言   时间:2015-06-21 10:39:49    阅读次数:267
oracle 查询表及字段结构
select --*tcl.column_name,cc.comments col_comments,data_type,case data_type when 'NUMBER' then '('||data_precision||','||data_scale||')' when 'VARCHA....
分类:数据库   时间:2015-06-15 18:24:04    阅读次数:163
Precision/Recall和ROC曲线与分类
【混淆矩阵与Precision/Recall和ROC曲线的关系】首先我们引入混淆矩阵: 当我们对样本进行分类时,会分成正例样本(记为1)和负例样本(记为0),根据分类结果与原始分类,可以计算出相应的混淆矩阵。那么则有:Precision(pre)=true positive rate=tp/(tp+fp)Recall(sen)=tp/(tp+fn)false positive rate=fp/...
分类:其他好文   时间:2015-06-13 09:57:59    阅读次数:722
VBS基础篇-----数据类型之间的转换
ValueDescriptionByteByte valueIntegerInteger valueLongLong integer valueSingleSingle-precision floating-point valueDoubleDouble-precision floating-poi...
分类:其他好文   时间:2015-06-11 10:50:50    阅读次数:145
ANN中Precision-Recall权衡
如果想要得到较高的精度,则需要较长的编码。编码长度m增长的话,则item碰撞的概率会成倍的减小,从而导致召回率下降。为了得到较高的召回率,则需要多个哈希表。 参考http://yongyuan.name/blog/approximate-nearest-neighbor-search.html
分类:其他好文   时间:2015-05-27 00:43:46    阅读次数:151
高精度乘法
(转)/*高精度乘法输入:两行,每行表示一个非负整数(不超过10000位)输出:两数的乘积。*/#include#include#include#include#define MAX 10001inthigh_precision(int*sum,int*a,int*b,inta_len,intb_l...
分类:其他好文   时间:2015-05-26 12:25:55    阅读次数:137
HDU - 4565 So Easy! 矩阵快速幂
题目大意:求解题思路:这题跟HDU - 2256 Problem of Precision类似,只不过这题是向上取整 有一个隐藏的条件:(a-1)^2 < b < a ^ 2 表明a - 1 < b < a 也就是(a - sqrt(b) )^n是小于1的 附上HDU - 2256 Problem of Precision的题解链接http://blog.csdn.net/l12301201...
分类:其他好文   时间:2015-05-20 09:50:42    阅读次数:125
HDU - 2256 Problem of Precision 矩阵快速幂
题目大意: 解题思路:再调用一下别人的图。。。 #include #include using namespace std; #define mod 1024struct Matrix{ int mat[2][2]; }a, b, tmp; int n;void init() { a.mat[0][0] = 5; a.mat[0][1]...
分类:其他好文   时间:2015-05-19 19:09:58    阅读次数:88
PHP Datatype Conversion Safety Risk、Floating Point Precision、Operator Security Risk、Safety Coding Principle
PHP Datatype Conversion Safety Risk、Floating Point Precision、Operator Security Risk、Safety Coding Principle
分类:Web程序   时间:2015-05-18 14:31:26    阅读次数:177
模型评估和选择
评价分类器性能的度量分类器评估度量包括准确率(又称“识别率”)、敏感度(或称为召回率recall)、特效性、精度(precision)F1和FΒ。 度量 公式 准确率、识别率 TP+TNP+N\dfrac{TP+TN}{P+N} 错误率、识分类率 FP+FNP+N\dfrac{FP+FN}{P+N} 敏感度 TPP\dfrac{TP}{P} 特效性、真负例率 T...
分类:其他好文   时间:2015-05-18 11:02:25    阅读次数:379
571条   上一页 1 ... 46 47 48 49 50 ... 58 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!