Skip to content
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

'DataFrame' object has no attribute 'append' #113

Open
adityamalikzeiss opened this issue Jul 9, 2024 · 2 comments
Open

'DataFrame' object has no attribute 'append' #113

adityamalikzeiss opened this issue Jul 9, 2024 · 2 comments

Comments

@adityamalikzeiss
Copy link

I am getting the following exceptions while trying Auto_TS:

Exception occurred while building Prophet model...
'DataFrame' object has no attribute 'append'
FB Prophet may not be installed or Model is not running...

Exception occurred while building Auto SARIMAX model...
'DataFrame' object has no attribute 'append'
Auto SARIMAX model error: predictions not available.

I have followed the example notebook given for univariate model.

@adityamalikzeiss
Copy link
Author

Getting the exact same errors when executing the autots_univariate_example.ipynb:

Best model is a Seasonal SARIMAX(2,1,1)*(0,0,0,12), aic = 2458.432
Exception occurred while building Auto SARIMAX model...
'DataFrame' object has no attribute 'append'
Auto SARIMAX model error: predictions not available.

Fold Number: 2 --> Train Shape: 441 Test Shape: 5
Exception occurred while building Prophet model...
'DataFrame' object has no attribute 'append'
FB Prophet may not be installed or Model is not running...

@BryR0
Copy link

BryR0 commented Aug 7, 2024

replace line models\build_*.py:
extra_concatenated = extra_concatenated.append(concatenated)

to
`**try:

extra_concatenated = extra_concatenated.append(concatenated)

except Exception as e:

extra_concatenated = pd.concat([extra_concatenated,concatenated])** `

in line 968 auto_ts_init_.py:

Now make predictions using model given

predictions=None <---- local variable

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants