Use correct, non-deprecated merge syntax (resolves #2226)

This commit is contained in:
ines 2018-04-18 18:28:28 -04:00
parent 5957f15227
commit 9632595fb4
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ from ..symbols import HEAD, TAG, DEP, ENT_IOB, ENT_TYPE
def merge_ents(doc):
"""Helper: merge adjacent entities into single tokens; modifies the doc."""
for ent in doc.ents:
ent.merge(ent.root.tag_, ent.text, ent.label_)
ent.merge(tag=ent.root.tag_, lemma=ent.text, ent_type=ent.label_)
return doc