我正在尝试使用先知。我已经安装了所有必需的软件包:
pip install pandas numpy jupyterlab seaborn
conda install pywin32
conda install -c anaconda pystan=2.19.1.1=py38hac22706_0
conda install -c conda-forge prophet
conda install -c conda-forge tensorflow
pip install darts
conda install -c conda-forge prophet
为什么pystan=2.19.1.1=py38hac22706_0
?因为有人有这个版本,一切都很好,所以他建议这个版本。相同的 Windows 系统,相同的安装包顺序。'StanModel' object has no attribute 'fit_class'
但是在拟合模型时出现错误:
model = Prophet()
model.fit(train)
prediction = model.predict(len(val))
我检查了我是否Pystan
真的拥有它,我真的拥有它。
请帮忙。