问题标签 [pystan]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
103 浏览

python - PerfectSeparationError:检测到完美分离,结果不可用

我正在尝试使用 sm.GLM 二项式拟合函数,但它不断给我完美的分离错误。我对这个功能真的很陌生,所以请帮助我!选择是带有形状的ndarray(15978,)。

太感谢了!

0 投票
1 回答
158 浏览

databricks - Databricks 上的 STAN - AttributeError:“ConsoleBuffer”对象没有“已关闭”属性

在 Databricks 8.2 ML 上运行 STAN (pystan) 会引发以下错误

要重现,只需运行https://pystan.readthedocs.io/en/latest/中的简单示例

似乎 ConsoleBuffer 类没有关闭的实现?其他人遇到过这个问题吗?有什么解决方法推荐吗?我目前正在使用单节点集群,理想情况下不想在本地机器上运行它。

堆栈跟踪

0 投票
1 回答
197 浏览

python - 使用 fbprophet 时 EC2 出错:无法识别的令牌“初始”:期待“空”、“真”、“假”或 NaN

遇到以下错误:

上述错误不断出现。尝试降级numpy,重新安装pystanfbprophet但问题仍未解决。

0 投票
3 回答
1678 浏览

python - “StanModel”对象在使用 Prophet 时没有属性“fit_class”

我正在尝试使用先知。我已经安装了所有必需的软件包:

为什么pystan=2.19.1.1=py38hac22706_0?因为有人有这个版本,一切都很好,所以他建议这个版本。相同的 Windows 系统,相同的安装包顺序。'StanModel' object has no attribute 'fit_class'但是在拟合模型时出现错误:

我检查了我是否Pystan真的拥有它,我真的拥有它。

请帮忙。

0 投票
1 回答
657 浏览

python - ModuleNotFoundError:没有名为“pystan”的模块

Pystan已在EMR节点(主节点、任务节点和核心节点)上成功安装,但我仍然收到此错误

ModuleNotFoundError:没有名为pystan 的模块

pip install pystan我使用through安装了 pystan boostrap_scrtip_actions

有谁知道可能是什么问题?

我使用 Python 3.7 emr 6.3.0,.

0 投票
0 回答
42 浏览

python-3.x - AttributeError:模块“pystan”在拟合 Prophet 时没有属性“misc”

拟合先知模型 AttributeError 时出现以下错误 :模块 'pystan' 没有属性 'misc'

我之前收到以下错误 AttributeError: 'Prophet' object has no attribute 'stan_backend'

但是在手动导入 Pystan 后它得到了修复,今天又出现了同样的错误,所以我重新安装了 Pystan,但是因为它不工作并抛出同样的错误 AttributeError: module 'pystan' has no attribute 'misc'

0 投票
1 回答
44 浏览

amazon-web-services - EMR stuck at bootstrap script

Am trying to run a bootstrap file at EMR to installed facebook prophet which seems to have an issue requiring to install dev-tools, the bootstrap.sh simply runs

bootstrap.sh

,output logs shows the below enter image description here

and errors logs shows

enter image description here

but then the cluster is stuck for 1 hour before failing

0 投票
1 回答
621 浏览

python - 无法 pip 安装 pystan

不能pip install fbprophet也不能pip install pystan

我在 Windows 10 上使用 VS Code 和 Python 3.9.3 64 位。我还更新到了最新版本的 Visual Studio 构建工具 (16.11.3),因为有人说,你至少需要 Visual Studio C++ 14.0 才能使用pystan.

还尝试安装 httpstan 不起作用,并且还给了我更多错误。我见过有人使用 conda/anaconda,但我不使用它。任何帮助表示赞赏。

0 投票
1 回答
337 浏览

python-module - ImportError:在 MacOS 上没有名为“pystan”的模块

pystan使用pip install pystan. 我检查了模块是否与 pip freeze 一起列出。但是当我使用import pystan. 它给出了找不到模块的错误。

下面是 pip freeze 命令的输出。它显示 pystan 版本 3.3.0

但是,当我尝试从控制台导入模块时,它会引发以下错误。

导入列出的任何其他模块不会引发错误。

0 投票
0 回答
82 浏览

visual-c++ - Pystan 安装找不到 mingw 并出现“不支持 MSVC”警告

我正在安装 pystan。没有任何错误。当我验证 pystan 时,它总是尝试调用 MSVC 而不是 mingw。

错误指向“site-packages\pystan\model.py”,然后是“lib\distutils\command\build_ext.py”。

build_ext.py 找不到“conda install libpython m2w64-toolchain -c msys2”安装的mingw。它仍然调用 MSVC 并返回:

这个结果很明显,因为 pystan 警告说不支持 MSVC 并且他们的官方文档已经解释了这一点。

根据这个官方页面,我使用以下命令检查了 mingw-w64:

输出是正确的。

此外,我根据此 MS 页面彻底卸载了 MS Visual Studio 。但我仍然遇到同样的错误。

知道我可以摆脱这个麻烦吗?谢谢