I want Spyder to display the plot of dependencies using Displacy visualizer of Spacy.
Here is the code:
import spacy
nlp = spacy.load('en_core_web_sm')
from spacy import displacy
doc = nlp(u'This is a short text.')
displacy.render(doc, style='dep', options={'distance':110})
The program ends without displaying anything.
If I add jupyter=True, I get this:
<IPython.core.display.HTML object>