Skip to content

Commit

Permalink
printing debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
edgan8 committed Nov 12, 2017
1 parent 9c6db5e commit e82fbdb
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ public List<FPGItemsetResult> getEmergingItemsetsWithMinSupport(
List<ItemsetWithCount> outlierGrouped = gb.groupBy(outliersRaw);
long elapsed = System.currentTimeMillis() - startTime;
System.out.println("Grouping Time: "+elapsed);
System.out.println(String.format("Orig: %d/%d After: %d/%d",
outliersRaw.size(), inliersRaw.size(),
outlierGrouped.size(), inlierGrouped.size()
));
Map<Integer, Double> inlierCounts = new ExactCount().countGrouped(inlierGrouped).getCounts();
Map<Integer, Double> outlierCounts = new ExactCount().countGrouped(outlierGrouped).getCounts();

Expand Down

0 comments on commit e82fbdb

Please sign in to comment.