我需要通过Java API使用StanfordTruecaser。我有以下代码:

  String text = "i love paris. i am with barack obama";

  //define the properties of the pipeline to be run and add annotators to it
  Properties props = new Properties();
  props.put("annotators", "tokenize, ssplit, pos, lemma, ner, truecase");
  pipeline = new StanfordCoreNLP(props);

  //run annotators on document text
  Annotation document = new Annotation(text);
  pipeline.annotate(document);


但是POS标记器不能很好地工作:

Adding annotator pos
Exception in thread "main" java.lang.RuntimeException: edu.stanford.nlp.io.RuntimeIOException: Unrecoverable error while loading a tagger model
    at edu.stanford.nlp.pipeline.StanfordCoreNLP$4.create(StanfordCoreNLP.java:558)
    at edu.stanford.nlp.pipeline.AnnotatorPool.get(AnnotatorPool.java:85)
    at edu.stanford.nlp.pipeline.StanfordCoreNLP.construct(StanfordCoreNLP.java:267)
    at edu.stanford.nlp.pipeline.StanfordCoreNLP.<init>(StanfordCoreNLP.java:129)
    at edu.stanford.nlp.pipeline.StanfordCoreNLP.<init>(StanfordCoreNLP.java:125)


我使用Eclipse,并且已将stanford-corenlp-3.4.jar链接为:

最佳答案

我只是将stanford-corenlp-3.4-models.jar添加到Eclipse中的类路径中,并且它可以工作。

07-24 09:16