AutoTS
AutoTS copied to clipboard
Automated Time Series Forecasting
Hello. I spent some time with autots for my time series prediction task. It seems it is only for forecasting the next "n" timesteps according to past data. However, i...
How can I include past and future covariates in autots? I like to use a historical training set and then apply it to different segments in the future. For example...
Hi, I wanted to continue the conversation around autots ability to do multivariate analysis. I have tried the stand-alone Sarimax algorithm with its exog parameter capabilities to add covariates to...
Hello! Is there support for fitting a model with a certain issue/creation time `n` time steps before the prediction target window? I.e. I want to make the prediction at time...
https://github.com/winedarksea/AutoTS/blame/7a843d050f62c1b4046c0b08020838e8eb95388a/autots/templates/general.py#L467 when running following: ```python from autots import AutoTS model = AutoTS(forecast_length=10, frequency='infer',ensemble='simple', drop_data_older_than_periods=200) ``` following backtrace is thrown: ``` Traceback (most recent call last): File "/Users/rasjani/src/omat/tmp/tst.py", line 2, in...
Hi Colin, Since the update to AutoTS 0.6.12 I'm getting this error while forecasting on existing models that were working fine before: ``` /lib/python3.10/site-packages/numpy/lib/function_base.py:2853: RuntimeWarning: invalid value encountered in divide...