我能够使用斯坦福解析器和下面的java代码解析一个句子并获得解析分数
LexicalizedParser lp = LexicalizedParser.loadModel(
"edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz"
);
lp.setOptionFlags(new String[]{"-maxLength", "80", "-retainTmpSubcategories"});
String sent = "My name is Rahul";
Tree parse = (Tree) lp.apply(sent);
double score = parse.score();
有没有办法使用斯坦福解析器给出的解析分数来检查句子的语法性?
谢谢。