在 Arviz 中绘制plot_trace或plot_posterior时出现类型错误
运行代码时 az.plot_trace(result_final); 面临以下错误 TypeError: Expected dtype object, got 'numpy.dtype[float64]'
上述异常是以下异常的直接原因:
SystemError: CPUDispatcher(
你能让我知道如何解决这个问题吗
While running the code az.plot_trace(result_final);
facing the below error
TypeError: expected dtype object, got 'numpy.dtype[float64]'
The above exception was the direct cause of the following exception:
SystemError: CPUDispatcher(<function histogram at 0x00000147106C8B88>) returned a result with an error set
Can you please let me know how to solve this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议将numba升级到最新版本,例如
python3 -m pip install numba==[最新版本]
。这可能还需要通过执行python3 -m pip install --ignore-installed llvmlite
手动更新 llmvite。希望有帮助!I suggest upgrading numba to the latest version, e.g.
python3 -m pip install numba==[latest version]
. This might require a manual update to llmvite as well by doing,python3 -m pip install --ignore-installed llvmlite
. Hope that helps!