Commit fd1abe015fa0486e3c54a4fab3cb8a56bc34ebff
1 parent
1bc082b9
Refined presentation of classification table
Showing
1 changed file
with
2 additions
and
1 deletions
openbr/core/eval.cpp
| ... | ... | @@ -1304,7 +1304,8 @@ void EvalEER(const QString &predictedXML, QString gt_property, QString distribut |
| 1304 | 1304 | numTemplates-classOneTemplateCount, classOneTemplateCount, numTemplates); |
| 1305 | 1305 | foreach (float FAR, QList<float>() << 0.1 << 0.01 << 0.001 << 0.0001) { |
| 1306 | 1306 | const OperatingPoint op = getOperatingPointGivenFAR(operatingPoints, FAR); |
| 1307 | - printf("TAR & Score @ FAR = %.0e: %.3f %.3f\n", FAR, op.TAR, op.score); | |
| 1307 | + printf("TAR = %.3f @ FAR = %.0e | Threshold= %.3f\n", op.TAR, FAR, op.score); | |
| 1308 | + | |
| 1308 | 1309 | } |
| 1309 | 1310 | printf("EER: %.3f @ Threshold %.3f\n", EER*100, EERThres); |
| 1310 | 1311 | ... | ... |