Skip to content

Commit

Permalink
#512 - Check logging in TC
Browse files Browse the repository at this point in the history
  • Loading branch information
Horsmann committed Oct 2, 2018
1 parent a04bd88 commit ae827f4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -147,9 +147,9 @@ private void writeOverallResults(String learningMode, StorageService store, Set<
r.writeResults(fscoreFile);

if (printResultsToSysout) {
System.out.println("\n\n--- Accumulated results of all folds in the CrossValidation run [" + id
System.out.println("\n\nAccumulated results of all folds in the CrossValidation run\n\t[" + id
+ "/" + getMLSetup(id) + "]");
results.keySet().forEach(x -> System.out.println(x + "\t" + results.get(x)));
results.keySet().forEach(x -> System.out.println("\t\t" + x + "\t" + results.get(x)));
System.out.println("\nAccumulated results per category:\n" + r.getResults());
System.out.println("\n");
} else {
Expand Down

0 comments on commit ae827f4

Please sign in to comment.