我已在我的系统上安装了nltk。但我无法使用以下代码使用Stanford POS Tagger。
from nltk.tag.stanford import StanfordTagger
st = StanfordTagger('bidirection-distsim-wsj-0-18.tagger')
我甚至尝试过记录的代码。
from nltk.tag import StanfordPOSTagger
st = StanfordPOSTagger('english-bidirectional-distsim.tagger')
这个错误正在爆发。
NLTK was unable to find ! Set the CLASSPATH environment variable.
我的nltk模块中已经有stanford.py了