码迷,mamicode.com
首页 >  
搜索关键字:precision    ( 571个结果
precision recall
以人脸数据为例给定的数据集中有是人脸的图,也有不是人脸的图。precision = #将人脸识别为人脸/(#将人脸识别为人脸 +#将不是人脸识别为人脸)recall = #将人脸识别为人脸/(#将人脸识别为人脸 + #将人脸识别为不是人脸)也就是说,precision高,指将不是人脸识别为人脸的数比...
分类:其他好文   时间:2014-08-28 16:07:39    阅读次数:214
查询数据库字段
select AA.columnname,AA.tablename ,AA.typename,AA.max_length,AA.precision,AA.scale ,BB.remark from (select a.name as columnname,b.name tablename ,c.na...
分类:数据库   时间:2014-08-26 15:06:06    阅读次数:340
准确率和召回率(precision&recall)
算法评价指标:准确率和召回率。...
分类:其他好文   时间:2014-08-23 15:26:51    阅读次数:188
浮点数比较
参照MSDN定义: /*?Compile?options?needed:?none.?Value?of?c?is?printed?with?a?decimal point?precision?of?10?and?6?(printf?rounded?value?by?default)?to show?the?difference */...
分类:其他好文   时间:2014-08-22 16:32:59    阅读次数:255
sql查看数据类型
两种方式查看: 一.SQL_VARIANT_PROPERTY (expression , property )property : 1.BaseType SQL Server 数据类型 2.Precision 数值基本数据类型的位数 ...
分类:数据库   时间:2014-08-22 14:15:28    阅读次数:668
poj1001 Exponentiation
DescriptionProblems involving the computation of exact values of very large magnitude and precision are common. For example, the computation of the na...
分类:其他好文   时间:2014-08-21 00:00:43    阅读次数:244
指定精确度(*号的使用)
*号的使用 1 #include 2 3 int main(void) 4 { 5 unsigned width, precision; 6 float height; 7 printf("Please enter you height(enter a tag befor...
分类:其他好文   时间:2014-08-19 23:51:05    阅读次数:214
不使用库函数sqrt实现求一个数的平方根
二分法:double mysqrt(double a){ if(a == 0 ) return 0; double precision = 1.0e-7, start = 0, end = a; if(a precision) { double mid = (...
分类:其他好文   时间:2014-08-16 21:04:21    阅读次数:257
(转)Learning to Rank for IR的评价指标—MAP,NDCG,MRR
MAP: Mean Average Precision NDCG: Normalized Discounted Cumulative Gain MRR: Mean Reciprocal Rank
分类:其他好文   时间:2014-08-06 18:44:32    阅读次数:381
Method and apparatus for establishing IEEE 1588 clock synchronization across a network element comprising first and second cooperating smart interface converters wrapping the network element
Apparatus for making legacy network elements transparent to IEEE 1588 Precision Time Protocol operation. Network elements are wrapped by device(s) cap...
分类:移动开发   时间:2014-08-04 21:05:07    阅读次数:464
571条   上一页 1 ... 53 54 55 56 57 58 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!