Package edu.stanford.nlp.ie.machinereading.structure

Examples of edu.stanford.nlp.ie.machinereading.structure.EntityMentionFactory


  public static final boolean USE_SUB_TYPES = false;

  private Map<String, String> entityTagForNer;
 
  public RothEntityExtractor() {
    super(null, USE_SUB_TYPES, null, true, new EntityMentionFactory(), true);
    entityTagForNer = new HashMap<String, String>();
//    entityTagForNer.put("person", "Peop");
//    entityTagForNer.put("organization", "Org");
//    entityTagForNer.put("location", "Loc");
    entityTagForNer.put("person", "PEOPLE");
View Full Code Here

TOP

Related Classes of edu.stanford.nlp.ie.machinereading.structure.EntityMentionFactory

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.