gpt4 book ai didi

stanford-nlp - 斯坦福 NLP : How to lemmatize single word?

转载 作者:行者123 更新时间:2023-12-04 20:36:20 25 4
gpt4 key购买 nike

我知道如何注释一个句子并获得每个单词的引理,但如果我只想对单个单词进行引理,我不知道该怎么做。我试过

Annotation tokenAnnotation = new Annotation("wedding");
List<CoreMap> list = tokenAnnotation.get(SentencesAnnotation.class);

String tokenLemma = list
.get(0).get(TokensAnnotation.class)
.get(0).get(LemmaAnnotation.class);

tokenAnnotation只有一个 TextAnnotation表示 list 的键将是 null这里。

那么我怎样才能对一个词进行词形还原呢?

最佳答案

有两种选择:您可以为您添加注释 Annotation对象通过 StanfordCoreNLP管道:

StanfordCoreNLP pipeline = new StanfordCoreNLP(new Properties(){{
setProperty("annotators", "tokenize,ssplit,pos,lemma");
}});

Annotation tokenAnnotation = new Annotation("wedding");
pipeline.annotate(tokenAnnotation); // necessary for the LemmaAnnotation to be set.
List<CoreMap> list = tokenAnnotation.get(SentencesAnnotation.class);
String tokenLemma = list
.get(0).get(TokensAnnotation.class)
.get(0).get(LemmaAnnotation.class);

另一种选择是使用 SimpleCoreNLP API:

String tokenLemma = new Sentence("wedding").lemma(0);

关于stanford-nlp - 斯坦福 NLP : How to lemmatize single word?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34963203/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com