在 Spark 中显示 <IPython.core.display.HTML object>

Display <IPython.core.display.HTML object> in Spark

我正在尝试在 Pyspark (Databricks) 中显示 Spacy 依赖树。但是我收到了这个错误。 有人可以帮我显示 html 对象吗? 我附上错误消息的屏幕截图。提前致谢。 这是我的代码:

import spacy
from spacy import displacy

doc = nlp("Reliance is looking at buying U.K. based analytics startup for  billion")
displacy.render(doc, style="dep" , jupyter=True)

错误信息:

这在 Databricks 笔记本中不起作用,因为它不是 Jupyter。但是你可以使用 displayHTML function together with rendering as HTML:

displayHTML(displacy.render(doc, style="dep", page=True))

甚至直接显示 SVG 数据:

displayHTML(displacy.render(doc, style="dep"))

这是结果: