Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stemming option in stanfordcorenlp

Problem: Is there an option to stem the words using stanford-core-nlp? I am not able to find one! I am using the stanford-corenlp-3.5.2.jar.

Code:

public class StanfordNLPTester {

  public static void main (String args[]){

    String paragraph = "A long paragraph here";

    Properties properties = new Properties();
    properties.put("annotators","tokenize,ssplit,pos,lemma,ner,depparse");
    StanfordCoreNLP pipeline = new StanfordCoreNLP(properties);
    Annotation annotation = new Annotation (paragraph);
    pipeline.annotate(annotation);
    pipeline.prettyPrint(annotation,System.out);
  }
}
like image 520
raikumardipak Avatar asked Oct 10 '15 04:10

raikumardipak


1 Answers

You'll need to get this from GitHub: https://github.com/stanfordnlp/CoreNLP

This class will provide what you want:

https://github.com/stanfordnlp/CoreNLP/blob/master/src/edu/stanford/nlp/process/Stemmer.java

The main() method of that class shows example usage of the stemmer.

You can continue to use the stanford-corenlp-3.5.2.jar and just include that one extra class, since everything that class depends on is in the jar.

like image 114
StanfordNLPHelp Avatar answered Nov 02 '22 16:11

StanfordNLPHelp