当我使用Stanford Parser解析句子时: “JiríHubac的剧本是一颗宝石。” “AndréTurpin吸收人物研究。”
引发内部错误。
如何处理句子多语言的情况?
答案 0 :(得分:1)
使用此处提供的完整Stanford CoreNLP工具包:
http://stanfordnlp.github.io/CoreNLP/
我跑了这个命令:
java -Xmx6g -cp "stanford-corenlp-full-2015-12-09/*" edu.stanford.nlp.pipeline.StanfordCoreNLP -annotators tokenize,ssplit,pos,lemma,ner,parse -file example.txt -outputFormat text
解析你的例句并没有问题,输出可以在文件中找到:example.txt.out
你能否提供你发出的命令以及试图在这句话上运行时的错误?