3

我是使用Stanford Parser的新手。我想使用命令行来接收键入的依赖项。我将 cmd 中的目录更改为 Stanford Parser- 文件所在的文件,然后使用以下命令:

C:\...directory...\java -cp stanford-parser.jar edu.stanford.nlp.parser.lexparser.LexializedParser -outputFormat "typedDependencies" englishPCFG.ser.gz input.txt

input.txt位于同一个 Stanford-Parser 文件中。但我得到以下异常:

从序列化文件englishPCFG.ser.gz加载解析器...
java.io.IOException:无法将“englishPCFG.ser.gz”解析为类路径、文件名或URL

我尝试了一些语法修改,如括号,但没有奏效。有人有想法吗?

已解决:java -cp C:\stanford-parser.jar;stanford-parser-3.2.0-models.jar edu.stanford.nlp.parser.lexparser.LexicalizedParser -outputFormat "typedDependencies" edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz .txt

4

0 回答 0