Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个语料库,并希望使用 Wordnet 查找每个句子中是否存在反义关系。
有没有人知道是否可以在 Wordnet 中查找反义词?谢谢!
反义词适用于引理级别,而不是同义词级别。(根据文档和nltk 谷歌代码项目中的这个问题。)使用后一个链接中的示例:
>>> wordnet.synset('light.a.01').antonyms() [] >>> wordnet.lemma('light.a.01.light').antonyms() [Lemma('heavy.a.01.heavy')]