我沒有做正確的事情 - 通過錯誤的外觀我越來越我認爲我錯過了一些數據。我已經爲sentiment_classifier(https://pypi.python.org/pypi/sentiment_classifier/0.7)安裝了所有先決條件,它們分別是nltk,numpy和sentiwordnet。這裏是我的代碼 - 來自我想要工作的文檔的一個簡單示例。使用senti_classifier和NLTK的情緒分析
from senti_classifier import senti_classifier
sentences = ['The movie was the worst movie', 'It was the worst acting by the actors']
pos_score, neg_score = senti_classifier.polarity_scores(sentences)
print pos_score, neg_score
和這裏的錯誤消息我得到
Traceback (most recent call last):
File "/home/beef/sciencefair2017/sentiment.py", line 1, in <module>
from senti_classifier import senti_classifier
File "build/bdist.linux-x86_64/egg/senti_classifier/senti_classifier.py", line 227, in <module>
File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 1178, in resource_stream
self, resource_name
File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 1454, in get_resource_stream
return io.BytesIO(self.get_resource_string(manager, resource_name))
File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 1457, in get_resource_string
return self._get(self._fn(self.module_path, resource_name))
File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 1535, in _get
return self.loader.get_data(path)
IOError: [Errno 0] Error: 'senti_classifier/data/SentiWn.p'
有什麼問題,以及如何我可以得到它的工作?任何建議,即使只是一個建議,而不是一個實際的解決方案,不勝感激。我已經嘗試過所有軟件包的各種版本,並且我瀏覽過一些文檔無濟於事。現在經過精心
git clone https://github.com/kevincobain2000/sentiment_classifier
cd sentiment_classifier
python setup.py install
作品 - :
我不認爲可能是這個問題,但是你可以嘗試在actor的'由演員'刪除額外的空間(「by」和「the」之間的一個空格)嗎? – fedepad
@fedepad只是編輯它 - 驚訝我沒有注意到它自己!那東西通常真的讓我感到困擾。 –
我會寫一個答案,如果它的工作......但我不知道這是問題所在。我正在查看庫中的代碼以查看該代碼。讓我知道。 – fedepad