Skip to content

Commit 9679ac6

Browse files
committed
Make the labels on the confusion matrix more readable
1 parent 63ec0d4 commit 9679ac6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/edu/stanford/nlp/sentiment/AbstractEvaluate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected static void printConfusionMatrix(String name, int[][] confusion) {
5959
confusionMatrix.add(j, i, confusion[i][j]);
6060
}
6161
}
62-
log.info(confusionMatrix);
62+
log.info("\n" + confusionMatrix);
6363
}
6464

6565
protected static double[] approxAccuracy(int[][] confusion, int[][] classes) {

0 commit comments

Comments
 (0)