本文介绍了斯坦福nlp库的无效Stream标头的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在研究斯坦福POS标记器教程.我正在Scala中进行此操作,但我认为这并不重要.
I am working through this Stanford POS tagger tutorial. I am doing it in Scala but I do not think that this matters.
产生错误的行是
val tagger=new MaxentTagger("/Users/user1/Documents/taggers/left3words-wsj-0-18.tagger")
错误是
edu.stanford.nlp.io.RuntimeIOException: java.io.StreamCorruptedException: invalid stream header: 0003CBE8
文件路径正确.
推荐答案
默认情况下,标记器将模型文件路径视为相对于类路径的资源路径,但它也接受完全限定的URL:
By default the tagger treats the model file path as a classpath-relative resource path, but it also accepts a fully qualified URL:
val tagger=new MaxentTagger("file:/Users/user1/Documents/taggers/left3words-wsj-0-18.tagger")
这篇关于斯坦福nlp库的无效Stream标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!