stanford nlp
在.NET中。我想从给定的句子中提取引理。当我执行这段代码时,我遇到了以下错误。
*无法打开
“edu/stanford/nlp/models/pos tagger/english-left3words/english-left3words-distsim.tagger公司“作为类路径、文件名或URL
.
有谁能告诉我在哪里可以得到那份文件,应该在哪里
我添加了示例代码。。
var text = "what is humidity";
var doc = new edu.stanford.nlp.simple.Document(text);
var sentences = doc.sentences().toArray();
foreach (edu.stanford.nlp.simple.Sentence sent in sentences)
{
var temp = sent.lemma(2); //getting error here
}