I am using a spacy visualizer to show labels of each span. I am trying to put the NER labels to the top or bottom of the text for better visualization and comparison. At the moment, I can visualize them with:
nlp=spacy.load("en_core_web_sm")
doc = nlp("This is from Texas Written by Ryan on sunday")
displacy.render(doc,style="ent",jupyter=True)
How can I move these entity labels to the top or bottom or left of the span?
The documentation on setting options is here; there is no explanation on how to do this.
