Last active
October 29, 2019 13:06
-
-
Save UrszulaCzerwinska/11a8fab0cc4c936b67e374e2b55e0fa0 to your computer and use it in GitHub Desktop.
demo spacy
This file contains hidden or 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
| import spacy | |
| from spacy import displacy | |
| # install spacy model | |
| #! pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_md-2.2.0/en_core_web_md-2.2.0.tar.gz | |
| nlp = spacy.load("en_core_web_md") | |
| doc = nlp("I think Barack Obama met founder of Facebook at occasion of a release of a new NLP algorithm.") | |
| displacy.render(doc, style="dep") # (1) | |
| displacy.render(doc, style="ent") # (2) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment