-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug: Box-cox transformation of model parameters when they can be negative #12
Comments
I am writing just to notify you that I see the issue. It lies not in input data not being positive but starting state used for calculations (and being calculated inside TBATS) being negative. I am considering on how to approach it. |
Hello, anything changed with this issue? I have the same problem |
Unfortunately it is still not fixed. |
I have just released a new version with a fix. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seems that sometimes the model parameters can be negative but we are trying to apply a box-cox transformation to them (c.f.
tbats/tbats/abstract/ModelParams.py
Lines 213 to 216 in ebb914d
When I find what the min value that has been passed to the box-cox transformation it is
min(y) = -21....
.The min value of my timeseries is 1 and has length 104.
The model is:
TBATS(seasonal_periods=[52], n_jobs=1, box_cox_bounds=(-2, 2))
See the following traceback:
Package versions:
Let me know if you want to know anything else.
The text was updated successfully, but these errors were encountered: