AutoViML / Auto_TS

Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Created by Ram Seshadri. Collaborators welcome.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Trying to save the model!

alicascar opened this issue · comments

Hi, Is there anyway to save the created model?

I tried to use dill but still it didn't help!

import dill
dill.dump(model, open('auto_ts.pkl', 'wb'), byref=True)

I get the following error:

RecursionError: maximum recursion depth exceeded

Thanks in advance.

Were you able to solve this ?

Hi @miggytrinidad 👍

This has been solved - can you please check the following notebook for an example of how it works.
https://github.com/AutoViML/Auto_TS/blob/master/example_notebooks/autots_multivariate_example.ipynb
thx
AutoViML