本文介绍了如何使用 Python、NLTK 和 WordNet 获取反义词引理列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想使用 Python、NLTK 和 WordNet 生成给定引理的反义词引理列表.其实我只是想分享一个小实用功能.
I would like to generate a list of antonyms lemmas of a given lemma using Python, NLTK, and WordNet. In fact I just want to share a small utility function.
推荐答案
返回反义词列表的简单 Python 和 NLTK 函数
A simple Python and NLTK function that returns a list of antonyms
from nltk.corpus import wordnet as wn
def get_antonyms(input_lemma):
antonyms = []
for syn in wn.synsets(input_lemma):
for lemma in syn.lemmas():
if lemma.antonyms():
antonyms.append(lemma.antonyms()[0].name())
return antonyms
相关作品:如何使用 Python 和 http://www.geeksforgeeks.org/get-synonymsantonyms-nltk-wordnet-python/
这篇关于如何使用 Python、NLTK 和 WordNet 获取反义词引理列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!