Package org.mitre.jcarafe.jarafe

Examples of org.mitre.jcarafe.jarafe.JarafeTagger


public class PartOfSpeechTagger {
 
  JarafeTagger posTagger = null;

  public PartOfSpeechTagger(String posModel) {
    posTagger = new JarafeTagger();
    posTagger.initialize(new String[] {"--model",posModel,"--no-pre-proc","--mode","json"});
  }
View Full Code Here

TOP

Related Classes of org.mitre.jcarafe.jarafe.JarafeTagger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.