无法解决加载斯坦福 NLP 解析器时的错误
使用斯坦福 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的代码不执行任何操作,因此它不应该给出任何错误。
在我看来,您正在尝试运行一些 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.
我在我的谷歌页面上有一个以编程方式使用斯坦福解析器的示例(在底部附近的代码部分):
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!