diff --git a/src/edu/umich/andykong/ptmshepherd/iterativelocalization/LDAProcessor.java b/src/edu/umich/andykong/ptmshepherd/iterativelocalization/LDAProcessor.java index 82e17b9..9d428bf 100644 --- a/src/edu/umich/andykong/ptmshepherd/iterativelocalization/LDAProcessor.java +++ b/src/edu/umich/andykong/ptmshepherd/iterativelocalization/LDAProcessor.java @@ -172,9 +172,6 @@ private List solveEigenProblem(RealMatrix sW, RealMatrix sB, int nEi // Perform eigen decomposition on the target matrix EigenDecomposition eigenDecomposition = new EigenDecomposition(targetMatrix); - for (int i = 0; i < eigenDecomposition.getRealEigenvalues().length; i++) - System.out.println(eigenDecomposition.getRealEigenvalue(i)); - // Sort eigenvectors by the magnitude of their corresponding eigenvalues in descending order List sortedIndices = IntStream.range(0, eigenDecomposition.getRealEigenvalues().length) .boxed()