为了账号安全,请及时绑定邮箱和手机立即绑定

为什么句子解析只在第一次抛出异常?

为什么句子解析只在第一次抛出异常?

慕侠2389804 2022-05-21 13:10:47
我正在使用该edu.stanford.nlp.simple包为几种不同语言的句子生成解析树。英文和中文模型产生了预期的结果,例如> val s = new Sentence("The quick brown fox jumps over the lazy dog.")> s.parseres1: edu.stanford.nlp.trees.Tree = (ROOT (NP (NP (DT The) (JJ quick) (JJ brown) (NN fox)) (NP (NP (NNS jumps)) (PP (IN over) (NP (DT the) (JJ lazy) (NN dog))))))(我在这里使用 Scala,但这不应该有所作为。)然而,像德语这样的其他语言表现出一种奇怪的行为:> val p = new Properties()> p.load(IOUtils.readerFromString("StanfordCoreNLP-german.properties"))> val s = new Sentence("Ich hoffe, dass es funktionieren wird.")> s.parse(p)10:48:34.127 [main] INFO  e.s.nlp.parser.common.ParserGrammar - Loading parser from serialized file edu/stanford/nlp/models/lexparser/germanFactored.ser.gz ... done  [1.4sec].                                                                                                                                    java.lang.NullPointerException                                                                                                                              edu.stanford.nlp.pipeline.ProtobufAnnotationSerializer.toProto(ProtobufAnnotationSerializer.java:672)                                                     edu.stanford.nlp.simple.Document.runParse(Document.java:933)                                                                                              edu.stanford.nlp.simple.Sentence.parse(Sentence.java:637)                                                                                                 ammonite.$sess.cmd3$.<init>(cmd3.sc:1)                                                                                                                    ammonite.$sess.cmd3$.<clinit>(cmd3.sc)> s.parse(p)我检查了属性p以验证它们没有改变——解析器NullPointerException在第一次调用时始终抛出 a ,然后在同一个句子中正常工作。我查看了 CoreNLP 的源代码,但找不到可能发生这种情况的明确原因……我想知道我是否遗漏了什么?我正在使用 Stanford-CoreNLP 版本3.9.1。我引用的外语模型来自 Maven 存储库,也在Stanford CoreNLP 网站上讨论过。
查看完整描述

1 回答

?
慕少森

TA贡献2019条经验 获得超9个赞

确认为错误——@StanfordNLPHelp 的修复对我有用。



查看完整回答
反对 回复 2022-05-21
  • 1 回答
  • 0 关注
  • 61 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信