I can't get this simple code to run:
LexicalizedParser lp = new LexicalizedParser("englishPCFG.ser.gz");
String sent = "This is one last test!";
lp.apply(sent).pennPrint();
I get the Error: "The Constructor LexicalizedParser(String) is undefined"
However, I am using Stanford Parser CoreNLP. LexicalizedParser in CoreNLP does have a definition of LexicalizedParser(String ParserFile).
Thanks for the help.