Skip to content

Commit

Permalink
Removing println
Browse files Browse the repository at this point in the history
  • Loading branch information
avulanov committed Jul 10, 2014
1 parent 87fb11f commit 4811378
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ class MulticlassMetrics(predictionAndLabels: RDD[(Double, Double)]) extends Logg
*/
lazy val confusionMatrix: Array[Array[Int]] = {
val matrix = Array.ofDim[Int](labels.size, labels.size)
println(matrix.length, matrix(0).length)
for (i <- 0 to labels.size - 1; j <- 0 to labels.size - 1) {
matrix(j)(i) = confusions.getOrElse((labels(i), labels(j)), 0)
}
Expand Down

0 comments on commit 4811378

Please sign in to comment.