Sto provando ad avviare un progetto di analisi dei sentimenti e userò il metodo delle parole di arresto. Ho fatto delle ricerche e ho scoperto che nltk ha delle parole d'arresto, ma quando eseguo il comando c'è un errore.NLTK e Stopwords Fail #lookuperror
Quello che faccio è la seguente, al fine di conoscere quali sono le parole che NLTK uso (come quello che si può trovare qui http://www.nltk.org/book/ch02.html in section4.1):
from nltk.corpus import stopwords
stopwords.words('english')
Ma quando premo entrano ottengo
---------------------------------------------------------------------------
LookupError Traceback (most recent call last)
<ipython-input-6-ff9cd17f22b2> in <module>()
----> 1 stopwords.words('english')
C:\Users\Usuario\Anaconda\lib\site-packages\nltk\corpus\util.pyc in __getattr__(self, attr)
66
67 def __getattr__(self, attr):
---> 68 self.__load()
69 # This looks circular, but its not, since __load() changes our
70 # __class__ to something new:
C:\Users\Usuario\Anaconda\lib\site-packages\nltk\corpus\util.pyc in __load(self)
54 except LookupError, e:
55 try: root = nltk.data.find('corpora/%s' % zip_name)
---> 56 except LookupError: raise e
57
58 # Load the corpus.
LookupError:
**********************************************************************
Resource 'corpora/stopwords' not found. Please use the NLTK
Downloader to obtain the resource: >>> nltk.download()
Searched in:
- 'C:\\Users\\Meru/nltk_data'
- 'C:\\nltk_data'
- 'D:\\nltk_data'
- 'E:\\nltk_data'
- 'C:\\Users\\Meru\\Anaconda\\nltk_data'
- 'C:\\Users\\Meru\\Anaconda\\lib\\nltk_data'
- 'C:\\Users\\Meru\\AppData\\Roaming\\nltk_data'
**********************************************************************
E, a causa di questo problema le cose come questo non può funzionare correttamente (ottenendo lo stesso errore):
>>> from nltk.corpus import stopwords
>>> stop = stopwords.words('english')
>>> sentence = "this is a foo bar sentence"
>>> print [i for i in sentence.split() if i not in stop]
Sai quale potrebbe essere un problema? Devo usare le parole in spagnolo, raccomandi un altro metodo? Ho anche pensato di usare il pacchetto Goslate con i dataset in inglese
Grazie per la lettura!
P.D .: Io uso Ananconda
In alternativa, se si desidera evitare la GUI e sapere cosa si desidera scaricare: '' 'nltk.download (" stopwords ")' '' – KLDavenport