tfcausalimpact
tfcausalimpact copied to clipboard
Python Causal Impact Implementation Based on Google's R Package. Built using TensorFlow Probability.
I installed this project a few weeks ago and was able to run it and get results using the default VI and HMC methods for some basic data. Now it...
Running the causal impact algorithm appears to leak memory. Reproduction code: ```python import gc import pandas as pd from causalimpact import CausalImpact data = pd.read_csv('https://raw.githubusercontent.com/WillianFuks/tfcausalimpact/master/tests/fixtures/arma_data.csv')[['y', 'X']] data.iloc[70:, 0] += 5...
ImportError: cannot import name 'gaussian' from 'scipy.signal' (C:\Users\DmitriyYakushin\anaconda3\Lib\site-packages\scipy\signal\__init__.py) scipy version '1.14.1' python 3.12 What can be done fix this problem? Thank You!
Hello there, first, many thanks for providing a stable and Bayesian based python version of the original R package. I was previously using the deprecated pycausalimpact package to perform analysis...