zoukankan      html  css  js  c++  java
  • Stanford CoreNLP--常量定义

     在运行Stanford CoreNLP过程中会用到tokenize,pos等参数,这些以常量形式定义在edu.stanford.nlp.pipeline.Annotator中,具体如下:

    /**
    * These are annotators which StanfordCoreNLP knows how to create.
    * Add new annotators and/or annotators from other groups here!
    */
    String STANFORD_TOKENIZE = "tokenize";
    String STANFORD_CLEAN_XML = "cleanxml";
    String STANFORD_SSPLIT = "ssplit";
    String STANFORD_POS = "pos";
    String STANFORD_LEMMA = "lemma";
    String STANFORD_NER = "ner";
    String STANFORD_REGEXNER = "regexner";
    String STANFORD_ENTITY_MENTIONS = "entitymentions";
    String STANFORD_GENDER = "gender";
    String STANFORD_TRUECASE = "truecase";
    String STANFORD_PARSE = "parse";
    String STANFORD_DETERMINISTIC_COREF = "dcoref";
    String STANFORD_COREF = "coref";
    String STANFORD_MENTION = "mention"; // TODO(jebolton) Merge with entitymention
    String STANFORD_RELATION = "relation";
    String STANFORD_SENTIMENT = "sentiment";
    String STANFORD_COLUMN_DATA_CLASSIFIER = "cdc";
    String STANFORD_DEPENDENCIES = "depparse";
    String STANFORD_NATLOG = "natlog";
    String STANFORD_OPENIE = "openie";
    String STANFORD_QUOTE = "quote";
    String STANFORD_UD_FEATURES = "udfeats";
    String STANFORD_LINK = "entitylink";
    String STANFORD_KBP = "kbp";

  • 相关阅读:
    About Face 摘录
    断言的使用
    C#中值传递和引用传递
    C++技巧之断言Assert
    About Face 一 目标导向设计
    About Face 二 设计行为与形态
    C++中引用传递与指针传递区别
    一个新的时代SoLoMo
    离散数学笔记算法部分
    汪教授的离散数学20110308 谓词与量词2
  • 原文地址:https://www.cnblogs.com/csts/p/5489628.html
Copyright © 2011-2022 走看看