use of edu.stanford.nlp.coref.CorefSystem in project CoreNLP by stanfordnlp.
the class FromFileCorefAlgorithm method main.
public static void main(String[] args) throws Exception {
Properties props = StringUtils.argsToProperties(new String[] { "-props", args[0] });
new CorefSystem(new DocumentMaker(props, new Dictionaries(props)), new FromFileCorefAlgorithm(args[1]), true, false).runOnConll(props);
}
Aggregations