2010-10-15 54 views
0

我正在嘗試使用預訓練解析模型engmalt。我下載了它,我打開它在我下載的MaltParser的目錄,我在提示使用MaltParser進行分析engmalt

java -Xmx1024m -jar malt.jar -c engmalt.poly -i infile.conll -o outfile.conll -m parse 

寫在MalParser網站建議。問題是,它給了我這個錯誤:

the file entry "engmaltpoly_single.info" in the mco file "../malt-1.4.1/engmaltpoly.mco" cannot be found.

有人可以幫助我嗎? 我正在使用Windows7和jre6。如何將從網站(engmalt.poly)下載的文件夾打包到.mco文件中?

非常感謝!

回答

1

我認爲你不應該爲模型文件名添加任何擴展名。所以試試看:

「java -Xmx1024m -jar malt.jar -c engmalt -i infile.conll -o outfile.conll -m parse」