Skip to content

Commit

Permalink
update to new annotator name
Browse files Browse the repository at this point in the history
  • Loading branch information
J38 authored and Stanford NLP committed Jan 12, 2018
1 parent e6e9f1b commit 30ce7a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/edu/stanford/nlp/coref/data/DocumentMaker.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ private StanfordCoreNLP getStanfordCoreNLP(Properties props) {
Properties pipelineProps = new Properties(props);
if (CorefProperties.conll(props)) {
pipelineProps.setProperty("annotators", (CorefProperties.getLanguage(props) == Locale.CHINESE ?
"lemma, ner" : "lemma") + (CorefProperties.useGoldMentions(props) ? "" : ", mention"));
"lemma, ner" : "lemma") + (CorefProperties.useGoldMentions(props) ? "" : ", coref.mention"));
} else {
pipelineProps.setProperty("annotators", "pos, lemma, ner, " +
(CorefProperties.useConstituencyParse(props) ? "parse" : "depparse") +
Expand Down

0 comments on commit 30ce7a7

Please sign in to comment.