Acabo de empezar a utilizar un etiquetador de voz parcial, y estoy enfrentando muchos problemas.¿Qué es el etiquetador NLTK POS pidiéndome que descargue?
empecé POS tagging con lo siguiente:
import nltk
text=nltk.word_tokenize("We are going out.Just you and me.")
Cuando quiero imprimir 'text'
, ocurre lo siguiente:
print nltk.pos_tag(text)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "F:\Python26\lib\site-packages\nltk\tag\__init__.py", line 63, in pos_tag
tagger = nltk.data.load(_POS_TAGGER)
File "F:\Python26\lib\site-packages\nltk\data.py", line 594, in load
resource_val = pickle.load(_open(resource_url))
File "F:\Python26\lib\site-packages\nltk\data.py", line 673, in _open
return find(path).open()
File "F:\Python26\lib\site-packages\nltk\data.py", line 455, in find
raise LookupError(resource_not_found)`
LookupError:
Resource 'taggers/maxent_treebank_pos_tagger/english.pickle' not
found. Please use the NLTK Downloader to obtain the resource:
>>> nltk.download().
Searched in:
- 'C:\\Documents and Settings\\Administrator/nltk_data'
- 'C:\\nltk_data'
- 'D:\\nltk_data'
- 'E:\\nltk_data'
- 'F:\\Python26\\nltk_data'
- 'F:\\Python26\\lib\\nltk_data'
- 'C:\\Documents and Settings\\Administrator\\Application Data\\nltk_data'
que utilizan nltk.download()
pero no funcionó.
¿Por qué escribe todo su texto en negrita? Esto realmente no es necesario. Además, publique un ejemplo mínimo pero completo que demuestre su error. –
Allí, lo limpié para ti. Por favor, tome esto como un ejemplo sobre cómo formatear las preguntas futuras. –
thankx ... el problema ya está resuelto ... – Pearl