AttributeError:'function'对象没有属性'lower'

时间:2016-01-22 10:25:00

标签: python sentiment-analysis text-analysis senti-wordnet

我正在尝试使用sentiwordnet文本文件“SentiWordNet_3.0.0_20130122.txt”。当我导入sentiwordnet.py文件并尝试运行它时,我收到错误如下:

错误发生在:

--------------------------------------------------------------------------         AttributeError
Traceback (most recent call last)
<ipython-input-13-6e4eb476b4b2> in <module>()
----> 1 happy = cv.senti_synsets('happy', 'a')

C:\Users\Desktop\fp\sentiwordnet.pyc in     senti_synsets(self, string, pos)
     65         synset_list = wn.synsets(string, pos)
     66         for synset in synset_list:
---> 67             sentis.append(self.senti_synset(synset.name))
     68         sentis = filter(lambda x : x, sentis)
     69         return sentis

C:\Users\Desktop\fp\sentiwordnet.pyc in senti_synset(self, *vals)
     52             return SentiSynset(pos_score, neg_score, synset)
     53         else:
---> 54             synset = wn.synset(vals[0])
     55             pos = synset.pos
     56             offset = synset.offset

C:\Users\Anaconda2\lib\site-packages\nltk\corpus\reader\wordnet.pyc in synset(self, name)
     1227     def synset(self, name):
     1228         # split name into lemma, part of speech and synset number
---> 1229         lemma, pos, synset_index_str = name.lower().rsplit('.', 2)
     1230         synset_index = int(synset_index_str) - 1
     1231 

AttributeError: 'function' object has no attribute 'lower'

我的代码:

import sentiwordnet as snw
SWN_FILENAME = "SentiWordNet_3.0.0_20130122.txt"
cv = snw.SentiWordNetCorpusReader(SWN_FILENAME)
happy = cv.senti_synsets('happy', 'a')
print happy

1 个答案:

答案 0 :(得分:0)

您可以尝试以下代码:

import nltk.corpus.reader.sentiwordnet as snw
SWN_FILENAME = "SentiWordNet_3.0.0_20130122.txt"
cv = snw.SentiWordNetCorpusReader('', [SWN_FILENAME])
happy = cv.senti_synsets('happy', 'a')
print(happy)

我认为您使用的sentiwordnet.py文件与您安装的nltk软件包不匹配。如果我使用了这样一个不匹配的对,我能够重现你的错误。上面的代码使用了nltk包附带的SentiWordNetCorpusReader(参见NLTK sources);然而,读者的构造函数想要第一个参数是'root'(我不知道nltk并且不知道这可能是什么;-)),因为第二个它想要一个文件ID列表(我认为它们意味着文件名,但代码似乎足够灵活,只能接受文件名作为字符串)。

我猜你也可以使用与你的sentiwordnet.py文件匹配的另一个nltk包版本。