Created
November 19, 2018 16:02
-
-
Save vallantin/d6fa0870d706cd5dfd9df71cfd6e2a66 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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