【发布时间】:2017-02-05 17:42:09
【问题描述】:
我在 Jupyter 笔记本中使用 Bokeh 0.12.2,它经常抛出有关“模型必须仅由单个文档拥有”的异常:
---------------------------------------------------------------------------
RuntimeError Traceback (most recent call last)
<ipython-input-23-f50ac7abda5e> in <module>()
2 ea.legend.label_text_font_size = '10pt'
3
----> 4 show(column([co2, co, nox, o3]))
C:\Users\pokeeffe\AppData\Local\Continuum\Anaconda3\lib\site-packages\bokeh\io.py in show(obj, browser, new, notebook_handle)
308 '''
309 if obj not in _state.document.roots:
--> 310 _state.document.add_root(obj)
311 return _show_with_state(obj, _state, browser, new, notebook_handle=notebook_handle)
312
C:\Users\pokeeffe\AppData\Local\Continuum\Anaconda3\lib\site-packages\bokeh\document.py in add_root(self, model)
443 self._roots.append(model)
444 finally:
--> 445 self._pop_all_models_freeze()
446 self._trigger_on_change(RootAddedEvent(self, model))
447
C:\Users\pokeeffe\AppData\Local\Continuum\Anaconda3\lib\site-packages\bokeh\document.py in _pop_all_models_freeze(self)
343 self._all_models_freeze_count -= 1
344 if self._all_models_freeze_count == 0:
--> 345 self._recompute_all_models()
346
347 def _invalidate_all_models(self):
C:\Users\pokeeffe\AppData\Local\Continuum\Anaconda3\lib\site-packages\bokeh\document.py in _recompute_all_models(self)
367 d._detach_document()
368 for a in to_attach:
--> 369 a._attach_document(self)
370 self._all_models = recomputed
371 self._all_models_by_name = recomputed_by_name
C:\Users\pokeeffe\AppData\Local\Continuum\Anaconda3\lib\site-packages\bokeh\model.py in _attach_document(self, doc)
89 '''This should only be called by the Document implementation to set the document field'''
90 if self._document is not None and self._document is not doc:
---> 91 raise RuntimeError("Models must be owned by only a single document, %r is already in a doc" % (self))
92 doc.theme.apply_to_model(self)
93 self._document = doc
RuntimeError: Models must be owned by only a single document, <bokeh.models.tickers.DaysTicker object at 0x00000000042540B8> is already in a doc
触发器总是调用show(...)(虽然从来没有在内核启动后第一次调用,只有后续调用)。
根据文档,我认为reset_output() 会使我的笔记本恢复到可操作状态,但异常仍然存在。通过反复试验,我确定有必要重新定义传递给show() 的所有内容。这使得交互式工作变得繁琐且容易出错。
[Ref]:
reset_output(state=None)
清除所有输出模式的默认状态。
返回:无
我对
reset_output()的看法是否正确——它应该解决导致此异常的情况吗?否则,我该如何避免这种异常?
【问题讨论】:
-
我的第一个建议是升级。 Bokeh 和 Notebook 都是非常大的、跨运行时的东西,集成它们是不断改进的挑战。我知道自
0.12.2以来一直有工作,尽管我没有时间研究细节。否则,请发布完整的代码示例以检查/试用。例如,我知道多次显示相同的图可以正常工作(我只是尝试确定),因此如果没有测试笔记本来重现问题,就无法推测您的具体问题是什么。
标签: bokeh