mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 09:56:28 +03:00
Add jupyter=True to displacy.render in documentation (#2806)
This commit is contained in:
parent
966b583d5e
commit
014dd47c70
|
@ -12,10 +12,10 @@ p
|
||||||
from spacy import displacy
|
from spacy import displacy
|
||||||
|
|
||||||
doc = nlp(u'Rats are various medium-sized, long-tailed rodents.')
|
doc = nlp(u'Rats are various medium-sized, long-tailed rodents.')
|
||||||
displacy.render(doc, style='dep')
|
displacy.render(doc, style='dep', jupyter=True)
|
||||||
|
|
||||||
doc2 = nlp(LONG_NEWS_ARTICLE)
|
doc2 = nlp(LONG_NEWS_ARTICLE)
|
||||||
displacy.render(doc2, style='ent')
|
displacy.render(doc2, style='ent', jupyter=True)
|
||||||
|
|
||||||
+aside("Enabling or disabling Jupyter mode")
|
+aside("Enabling or disabling Jupyter mode")
|
||||||
| To explicitly enable or disable "Jupyter mode", you can use the
|
| To explicitly enable or disable "Jupyter mode", you can use the
|
||||||
|
|
Loading…
Reference in New Issue
Block a user