2012-11-20 31 views
6

Bu benim kod ve hata iletisi:Hata Python stanford Tagger zaman

>>> from nltk.tag.stanford import StanfordTagger 
>>> st = StanfordTagger('bidirection-distsim-wsj-0-18.tagger') 

Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
    File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nltk/tag/stanford.py", line 42, in __init__ 
    verbose=verbose) 
    File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nltk/internals.py", line 597, in find_jar 
    raise LookupError('\n\n%s\n%s\n%s' % (div, msg, div)) 
LookupError: 

=========================================================================== 
    NLTK was unable to find ! Set the CLASSPATH environment variable. 

    For more information, on , see: 
    <http://nlp.stanford.edu/software> 
=========================================================================== 

Bunu nasıl düzeltebilirim? Ben gerçekten Python içinde stanford tagger kullanmak istiyorum Teşekkür ederim!

cevap

1
from nltk.tag.stanford import POSTagger 

st = POSTagger(< path to tagger >, < path to stanford NLP package/stanford-postagger.jar >) 

Her iki parametrenin de tam yolunu ekleyin. Bu işe yaramıyorsa Bu çalışması gerekir

export CLASSPATH = {CLASSPATH}: < path to stanford NLP package > 

değişken CLASSPATH çevreye Stanford Ayrıştırıcı yolunu eklediyseniz

ardından örnek bir cümleyi

st.tag('What is the airspeed of an unladen swallow ?'.split()) 

kontrol deneyin.