Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
crew102 committed Jan 4, 2018
1 parent 5a7bdb7 commit 8cb7b16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public class Example {
RakeParams params = new RakeParams(stopWords, stopPOS, minWordChar, shouldStem, phraseDelims);

// Create a RakeAlgorithm object
String POStaggerURL = "model-bin/en-pos-maxent.bin"; // The URL of your POS tagging model
String SentDetecURL = "model-bin/en-sent.bin"; // The URL of your sentence detection model
String POStaggerURL = "model-bin/en-pos-maxent.bin"; // The path to your POS tagging model
String SentDetecURL = "model-bin/en-sent.bin"; // The path to your sentence detection model
RakeAlgorithm rakeAlg = new RakeAlgorithm(params, POStaggerURL, SentDetecURL);

// Call the rake method
Expand Down

0 comments on commit 8cb7b16

Please sign in to comment.