Mentions légales du service

Skip to content
Snippets Groups Projects
Commit d2027086 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- changed the order between recall and fmeasure in display functions

parent 7b6ccee6
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,10 @@ The development of 4 versions continue.
<!--h2>Version 4.3 (): xx/xx/xxxx - Zimt</h2-->
<!--h2>Version 4.2 (): xx/xx/xxxx - Tring</h2-->
<p><ul compact="1">
<li>Changed order of display to precision/F-measure/recall (util)</li>
</ul></p>
<h2>Version 4.1 (1534): 13/10/2010 - Napjakmandu</h2>
<p><ul compact="1">
......
......@@ -446,8 +446,6 @@ which the program does...
writer.print("<td>");
if ( format.charAt(i) == 'p' ) {
writer.print("Prec.");
} else if ( format.charAt(i) == 'r' ) {
writer.print("Rec.");
} else if ( format.charAt(i) == 'f' ) {
writer.print("Fall.");
} else if ( format.charAt(i) == 'm' ) {
......@@ -456,6 +454,8 @@ which the program does...
writer.print("Over.");
} else if ( format.charAt(i) == 't' ) {
writer.print("Time");
} else if ( format.charAt(i) == 'r' ) {
writer.print("Rec.");
}
writer.println("</td>");
}
......@@ -503,8 +503,6 @@ which the program does...
writer.print("<td>");
if ( format.charAt(i) == 'p' ) {
formatter.format("%1.2f", eval.getPrecision());
} else if ( format.charAt(i) == 'r' ) {
formatter.format("%1.2f", eval.getRecall());
} else if ( format.charAt(i) == 'f' ) {
formatter.format("%1.2f", eval.getFallout());
} else if ( format.charAt(i) == 'm' ) {
......@@ -517,6 +515,8 @@ which the program does...
} else {
formatter.format("%1.2f", eval.getTime());
}
} else if ( format.charAt(i) == 'r' ) {
formatter.format("%1.2f", eval.getRecall());
}
writer.println("</td>");
}
......@@ -541,8 +541,6 @@ which the program does...
writer.print("<td>");
if ( format.charAt(i) == 'p' ) {
formatter.format("%1.2f", precision);
} else if ( format.charAt(i) == 'r' ) {
formatter.format("%1.2f", recall);
} else if ( format.charAt(i) == 'f' ) {
formatter.format("%1.2f", (double)(foundVect[k] - correctVect[k])/foundVect[k]);
} else if ( format.charAt(i) == 'm' ) {
......@@ -555,6 +553,8 @@ which the program does...
} else {
formatter.format("%1.2f", timeVect[k]);
}
} else if ( format.charAt(i) == 'r' ) {
formatter.format("%1.2f", recall);
}
writer.println("</td>");
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment