Skip to content

Instantly share code, notes, and snippets.

@vallantin
Created November 19, 2018 16:02
Show Gist options
  • Save vallantin/d6fa0870d706cd5dfd9df71cfd6e2a66 to your computer and use it in GitHub Desktop.
Save vallantin/d6fa0870d706cd5dfd9df71cfd6e2a66 to your computer and use it in GitHub Desktop.
for entity in doc_en.ents:
print(entity.text, entity.label_)
for entity in doc_pt.ents:
print(entity.text, entity.label_)
for entity in doc_fr.ents:
print(entity.text, entity.label_)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment