Skip to content

Commit

Permalink
Starts work on #186 - Added the Winnowing algo to the reasons list.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhargav-Rao committed Mar 2, 2019
1 parent be07a44 commit 430a447
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ public List<Reason> reasons() {
public List<Reason> reasons(boolean ignoringScores) {
List<Reason> reasons = new ArrayList<Reason>();

reasons.add(new StringSimilarity(this.target, this.originals, ignoringScores));
//reasons.add(new StringSimilarity(this.target, this.originals, ignoringScores));
reasons.add(new ExactParagraphMatch(this.target, this.originals));

reasons.add(new Winnowing(this.target, this.originals));


return reasons;
}
Expand Down

0 comments on commit 430a447

Please sign in to comment.