gpt4 book ai didi

python - 使用 Bokeh push_notebook() 流式传输数据时内存溢出

转载 作者:太空宇宙 更新时间:2023-11-03 17:58:45 24 4
gpt4 key购买 nike

调用push_notebook()将数据流式传输到IPython笔记本中的Bokeh图时,似乎存在内存泄漏。您可以在 IPython 笔记本单元中使用以下代码重现它:

from bokeh.plotting import *
import numpy as np

output_notebook()

x = np.linspace(0., 1000., 1000)
p = figure()
hold()
p.line(x = x, y = np.sin(x), name = 'y')

def update():
renderer = p.select(dict(name='y'))
ds = renderer[0].data_source
ds.data['y'] = np.sin(a * x)
ds.push_notebook()

show(p)

a = 1.
while True:
update()
a *= 1.1

但不确定是否应该这样使用。

最佳答案

此处列出了针对此问题的错误。 https://github.com/bokeh/bokeh/issues/1732

关于python - 使用 Bokeh push_notebook() 流式传输数据时内存溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28051780/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com