gpt4 book ai didi

python - 定义 WordNetError

转载 作者:太空宇宙 更新时间:2023-11-03 14:54:39 25 4
gpt4 key购买 nike

我有一个带有 sentiwordnet 词性的句子中的术语列表,我试图对其求和以找到净情绪:

from nltk.corpus import sentiwordnet as swn, wordnet

score = 0
for term in terms:
try:
term = swn.senti_synset(term)
except WordNetError:
pass
score += term.pos_score() - term.neg_score()

在添加异常之前,由于字典中不存在特定的同义词集,我得到了 WordNetError。现在添加了异常(exception),我收到此错误:

NameError: name 'WordNetError' is not defined

我该如何解决?

最佳答案

from nltk.corpus.reader.wordnet import WordNetError

必须导入 WordNetError

关于python - 定义 WordNetError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43546949/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com