0

我正在尝试为 python 中的一个项目获取 sentiwordnet 分数,我在某处找到了这段代码。

    import sentiwordnet
    from sentiwordnet import *
    swn_filename = 'C:\\Python27\\Lib\\SentiWordNet_3.0.0_20130122.txt'
    swn = SentiWordNetCorpusReader(swn_filename)

等等......但是,当我运行它时,它会抛出错误“没有名为 sentiwordnet 的模块”。我试图 pip install sentiwordnet 认为该模块可能丢失,但这也引发了错误。该怎么办??请帮忙。

4

1 回答 1

1

在此处查看安装指南: http ://www.nltk.org/install.html

您要使用的课程记录在这里: http ://www.nltk.org/api/nltk.corpus.reader.html#module-nltk.corpus.reader.sentiwordnet

于 2015-08-24T07:55:55.593 回答