我正在尝试检索名词的子类型。 对于前如果我输入John那么它应该将子类型赋予noun.Person。
目前我正在使用以下代码
WnLexicon.WordInfo wordInfo = WnLexicon.Lexicon.FindWordInfo(token, true);
var strength = wordInfo.Strength;
var wordType = wordInfo.partOfSpeech;
使用wordInfo.partOfSpeech我能够知道单词的类型(即Noun,Adj)。 但我想知道它是如上所述的子类型。