We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is a bug. When building a PyAF model with this dataset, a lot of warnings are issued.
Dataset :
df = pd.DataFrame() N = 1000 lTimeVar = 'Time' lSignalVar = 'Signal' df[lTimeVar] = pd.date_range("2018-01-01", periods=N, freq="H") df[lSignalVar] = np.random.random(df.shape[0])
Output :
INFO:pyaf.std:START_TRAINING 'Signal' /home/antoine/.local/lib/python3.9/site-packages/numpy/core/fromnumeric.py:57: RuntimeWarning: overflow encountered in accumulate return bound(*args, **kwds) /home/antoine/.local/lib/python3.9/site-packages/numpy/core/fromnumeric.py:57: RuntimeWarning: overflow encountered in accumulate return bound(*args, **kwds) /home/antoine/.local/lib/python3.9/site-packages/numpy/core/fromnumeric.py:57: RuntimeWarning: overflow encountered in accumulate return bound(*args, **kwds) /home/antoine/.local/lib/python3.9/site-packages/numpy/core/fromnumeric.py:57: RuntimeWarning: overflow encountered in accumulate return bound(*args, **kwds) /home/antoine/.local/lib/python3.9/site-packages/numpy/core/fromnumeric.py:57: RuntimeWarning: overflow encountered in accumulate return bound(*args, **kwds)
The text was updated successfully, but these errors were encountered:
Overflow in cumprod (relative difference transformation) #179
91c78d6
df.append is going to be deprecated. Use pd.concat instead
Merge pull request #180 from antoinecarme/issue_179_cumprod_overflow
e092d5c
Issue 179 cumprod overflow #179
Fixed.
Sorry, something went wrong.
antoinecarme
No branches or pull requests
This is a bug. When building a PyAF model with this dataset, a lot of warnings are issued.
Dataset :
Output :
The text was updated successfully, but these errors were encountered: