當前位置: 首頁>>代碼示例>>Java>>正文


Java CoreLabel.originalText方法代碼示例

本文整理匯總了Java中edu.stanford.nlp.ling.CoreLabel.originalText方法的典型用法代碼示例。如果您正苦於以下問題:Java CoreLabel.originalText方法的具體用法?Java CoreLabel.originalText怎麽用?Java CoreLabel.originalText使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在edu.stanford.nlp.ling.CoreLabel的用法示例。


在下文中一共展示了CoreLabel.originalText方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: preprocess

import edu.stanford.nlp.ling.CoreLabel; //導入方法依賴的package包/類
public Concept preprocess(Concept c) {

		if (this.tagger == null)
			this.tagger = new MaxentTagger("ext_models/pos_tagger/english-left3words-distsim.tagger");
		if (this.ner == null)
			this.ner = CRFClassifier.getClassifierNoExceptions("ext_models/ner/english.all.3class.distsim.crf.ser.gz");

		List<CoreLabel> words = tokFactory.getTokenizer(new StringReader(c.name)).tokenize();
		tagger.tagCoreLabels(words);
		words = ner.classifySentence(words);
		words = this.addLemmas(words);

		List<PToken> tokens = new ArrayList<PToken>();
		for (CoreLabel word : words) {
			PToken t = new PToken(word.originalText());
			t.pos = word.tag();
			t.neTag = word.get(CoreAnnotations.AnswerAnnotation.class);
			t.lemma = word.get(LemmaAnnotation.class);
			tokens.add(t);
		}
		c.tokenList = tokens;

		return c;
	}
 
開發者ID:UKPLab,項目名稱:ijcnlp2017-cmaps,代碼行數:25,代碼來源:NonUIMAPreprocessor.java

示例2: getOriginalText

import edu.stanford.nlp.ling.CoreLabel; //導入方法依賴的package包/類
private static String getOriginalText(List<CoreLabel> list) {
    String str = "";
    for (CoreLabel cl : list) {
        str += cl.originalText() + " ";
    }
    return str;
}
 
開發者ID:intel-analytics,項目名稱:InformationExtraction,代碼行數:8,代碼來源:IntelKBPModel.java


注:本文中的edu.stanford.nlp.ling.CoreLabel.originalText方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。