如何使用wordnet获取名词的子类型c#

时间:2015-07-21 10:26:58

标签: c# wordnet

我正在尝试检索名词的子类型。 对于前如果我输入John那么它应该将子类型赋予noun.Person。

目前我正在使用以下代码

 WnLexicon.WordInfo wordInfo = WnLexicon.Lexicon.FindWordInfo(token, true);
 var strength = wordInfo.Strength;
 var wordType = wordInfo.partOfSpeech;

使用wordInfo.partOfSpeech我能够知道单词的类型(即Noun,Adj)。 但我想知道它是如上所述的子类型。

0 个答案:

没有答案