Skip to content
Snippets Groups Projects
Commit b27e99fc authored by a.croix's avatar a.croix
Browse files

Add log for average AUC

parent 290566ac
No related branches found
No related tags found
1 merge request!4Neural network
......@@ -78,11 +78,14 @@ public final class Example {
data_file,
expected_file,
10,
10);
2);
double average_auc = 0;
for (Map.Entry val : solutions.entrySet()) {
System.out.println(val);
average_auc = average_auc + (double) val.getValue();
}
logger.log(Level.INFO, "Average AUC : " + average_auc / 10);
}
......
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