我運行了SPADE
程序包,並根據文檔引用了Charniak Parser,並編輯了spade.pl
變量,但它不起作用。它仍然拋出如下異常:如何解決我運行SPADE時出現的錯誤
sh: 1: /home/khaing/Downloads/CharniakParser/parseIt: not found
system /home/khaing/Downloads/CharniakParser/parseIt -LEn /home/khaing/Downloads/CharniakParser/DATA/ /home/khaing/Documents/test.txt > /home/khaing/Documents/test.txt.chp failed: 32512 at /home/khaing/Downloads/SPADE/bin/spade.pl line 38.
例外情況是找不到parseIt
。當我查閱Charniak Parser時,它有五個文件夾:CVS
,ecstuff
,DATA
,TRAIN
和PARSE
。我沒有看到parseIt
。但我發現pareIt.c
在PARSE
文件夾,所以我編輯路徑CharniakParser/PARSE/parseIt但它仍然有錯誤。
請給一個鏈接到下載解析器的頁面。我無法在Charniak的主頁上看到 – Borodin
請參閱[*編譯Charniak的解析器*](http://stackoverflow.com/q/7287087) – Borodin
現在,Charniak網站上的解析器版本不易編譯。目前維護的版本位於https://github.com/BLLIP/bllip-parser。要構建parseIt,你需要從頂層目錄運行'make PARSE'。 – dmcc