Skip to content

Commit

Permalink
enable entitymentions in default modes
Browse files Browse the repository at this point in the history
  • Loading branch information
brendano committed May 15, 2015
1 parent c13a182 commit 69a8be9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stanford_corenlp_pywrapper/sockwrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
'description': "tokenization and sentence splitting (included in all subsequent ones)", },
'pos': {'annotators':"tokenize, ssplit, pos, lemma",
'description':"POS (and lemmas)",},
'ner': {'annotators':"tokenize, ssplit, pos, lemma, ner",
'ner': {'annotators':"tokenize, ssplit, pos, lemma, ner, entitymentions",
'description':"POS and NER (and lemmas)",},
'parse': {'annotators':"tokenize, ssplit, pos, lemma, parse",
'description':"fairly basic parsing with POS, lemmas, trees, dependencies",},
'nerparse': {'annotators':"tokenize, ssplit, pos, lemma, ner, parse",
'nerparse': {'annotators':"tokenize, ssplit, pos, lemma, ner, entitymentions, parse",
'description':"parsing with NER, POS, lemmas, depenencies."},
}

Expand Down

0 comments on commit 69a8be9

Please sign in to comment.