Add jupyter=True to displacy.render in documentation (#2806)

This commit is contained in:
Charles-Axel Dein 2018-09-27 12:28:04 +02:00 committed by Ines Montani
parent 966b583d5e
commit 014dd47c70

View File

@ -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