无法解决加载斯坦福 NLP 解析器时的错误

发布于 2024-12-09 22:17:08 字数 344 浏览 1 评论 0原文

使用斯坦福 NLP 解析器 JAR 文件时,我不断收到相同的错误。

代码:

import java.io.Reader;

import edu.stanford.nlp.ling.*;
import edu.stanford.nlp.trees.*;

class TypedDependenciesDemo {
  public static void main(String[] args) {

  }

}

错误:

用法:关系树库编号范围

这是一个错误还是有某种方法可以解决这个问题?谢谢!

I keep getting the same error when using the Stanford NLP parser JAR files.

Code:

import java.io.Reader;

import edu.stanford.nlp.ling.*;
import edu.stanford.nlp.trees.*;

class TypedDependenciesDemo {
  public static void main(String[] args) {

  }

}

error:

usage: Relation treebank numberRanges

Is it a bug or is there some way to fix this? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

拔了角的鹿 2024-12-16 22:17:09

您的代码不执行任何操作,因此它不应该给出任何错误。
在我看来,您正在尝试运行一些 stanford jar 文件并且缺少命令行参数。您能详细解释一下您如何尝试执行上述代码吗?

Your code does not do anything, hence it should not give any error.
In my opinion, you are trying to run some stanford jar file and missing command line parameters. Can you explain in details how you are trying to execute the above code.

各自安好 2024-12-16 22:17:09

我在我的谷歌页面上有一个以编程方式使用斯坦福解析器的示例(在底部附近的代码部分):
http://sites.google.com/site/nicoflacco/

设置起来很麻烦正确设置,所以我提供了它,这样您就不必遭受那么多痛苦!

I have an example of using the Stanford parser programmatically on my google page (in the code section near the bottom):
http://sites.google.com/site/nicoflacco/

This was a pain to set up properly so I made it available so you don't have to suffer as much!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文